-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
executable file
·68 lines (62 loc) · 2.21 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
<?php
require_once 'php/clases/conexion/conexion.class.php';
require_once 'php/session/login.php';
#require_once 'php/session/encode.php';
$mensaje = null;
if(isset($_POST['session']))
{
$model = new Seleccionar;
$model->nick = htmlspecialchars($_POST['nick']);
$model->password = htmlspecialchars($_POST['password']);
$model->login();
$mensaje = $model->mensaje;
}
?>
<!DOCTYPE html>
<html lang="es">
<head>
<title>Carnetizacion Ugma</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/style.css" media="screen" type="text/css" />
<link rel="stylesheet" type="text/css" href="css/style.css">
<header>
<img ALIGN=center src="Logo.gif" border="0px" width="150px" height="160px">
<p ALIGN=center>
UNIVERSIDAD NORTORIENTAL GRAN MARISCAL DE AYACUCHO <br> EL TIGRE
</p>
</div>
</div>
<HR align="CENTER" size="5" width="500" color="yellow" noshade>
<HR align="CENTER" size="5" width="500" color="blue" noshade>
</header>
</head>
<body>
<div id="login-form">
<?php echo $mensaje;?>
<h3>Iniciar Sesión</h3>
<fieldset>
<form action="<?php echo $_SERVER["PHP_SELF"]; ?>" method="post">
<input type="text" name="nick" placeholder="Usuario" required />
<input type="password" name="password" placeholder="Password" required /> </br>
<br>
<input type="hidden" name="session">
</br>
<input type="button" align=center value="Iniciar sesion" onClick=" window.location.href='iniciar.php' ">
</br>
<table >
<input type="button" align=center value="Registro Profesor" onClick=" window.location.href='registro_P.php' ">
<input type="button" value="Registro Alumno" onClick=" window.location.href='registro_A.php' ">
</table>
</form>
</fieldset>
</div>
</body>
<tr>
</tr>
<img src="pie.jpg" align background="center" position: absolute; width="2480" height="90"/>
<p>
All Rights Reserved © | Overcode 2015</td>
</p>
</td>
</footer>
</html>