-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
executable file
·78 lines (64 loc) · 2.35 KB
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
require_once("Conexion/Login.php");
if(isset($_POST["envio"]) and $_POST["envio"] == "si")
{
$conectar = new Login();
$conectar-> acceso();
exit;
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html >
<head>
<title> Industrialización de la Leche para obtener Lácteos de Especialidad</title>
<meta name="keywords" content="" />
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="css/estilo.css" rel="stylesheet" type="text/css" media="all"/>
<link href="style.css" rel="stylesheet" type="text/css" media="all"/>
<script type="text/javascript" src="JavaScript/validar.js"></script>
<base target="_top">
</head>
<body onload="limpiarLogin();">
<div id="wrapper">
<div id="pagina">
<header>
</header>
<table class="tabla">
<TR class="modo1">
<TD width="60%">
<div id="content" align="justify">
<h4> <?php include 'usuarios/Intro.php'; ?></h4>
</div>
</TD>
<TD width="40%">
<div id="sidebar" >
<div >
<h3>Iniciar sesión</h3>
<form id="login" name="login" method="post" action="">
<span style="color:#0xFFFFFF; font-size:12px; size=10 ">Usuario</span> <br>
<input type="text" id="usuario" name="usuario" value="bender"/><br><br>
<span style="color:#0xFFFFFF; font-size:12px;">Contraseña</span><br>
<input type="password" id="password" name="password" value="123456"/><br><br>
<input class="button-style" type="button" value="INGRESAR" onclick="validaLogin();" />
<p><input type="hidden" name="envio" value="si" /></p>
<br/>
</form>
</div>
</div>
</TD>
</TR>
<TR class="modo2">
<td colspan="2">
<p align="center"> Industrialización de la Leche para obtener Lácteos de Especialidad </p>
<p> </p>
</td>
</TR>
</TABLE>
<div >
<p>Copyright (c) 2014 </p>
</div>
</div>
</div>
</body>
</html>