-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsultarAlumno.php
More file actions
89 lines (68 loc) · 2.41 KB
/
consultarAlumno.php
File metadata and controls
89 lines (68 loc) · 2.41 KB
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
79
80
81
82
83
84
85
86
87
88
89
<?php
session_start();
include('cn/acceso_db.php');
?>
<html>
<header>
<meta charset = "utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut" href="favicon.ico" type="img/favicon.ico" />
<link rel="stylesheet" href="lib/bootstrap.min.css">
<link rel="stylesheet" href="lib/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link rel="stylesheet" type="text/css" href="css/animate.css">
<link href='https://fonts.googleapis.com/css?family=Amaranth:700' rel='stylesheet' type='text/css'>
<title>Consulta de Alumnos</title>
</header>
<body class="letra animated fadeInDown letraFor letra">
<nav class="se-gris padding-largo text-center">
<ul class="no-lista">
<?php
if(isset($_SESSION['usuario_nombre'])) {
?>
<li class="col-md-3 inline-block mediano "><a href="principal.php">
CardenalQuintero</a></li>
<li > Usuario: <a href="perfil.php?id=<?=$_SESSION['usuario_id']?>">
<strong><?=$_SESSION['usuario_nombre']?></strong></a><br />
</li>
<a href="index.php">Cerrar Sesión</a>
<?php
}
?>
</ul>
</nav>
<form name="consulta1" method="post" action="consultasphp/consulta.php">
<div class="col-xs-3 col-md-3 col-sm-6 center-block quitar-float text-center espacio-arriba">
<h2>Consulta de Alumnos</h2>
<input type="text"
name="codigo"
class="form-control espacio-arriba"
placeholder="Ej: 20123456">
<a href="principal.php">
<button type="button"
class="btn btn-info espacio-arriba espacio-derecha">Volver</button></a>
<input type="submit"
value="Aceptar"
class="btn btn-info espacio-arriba ">
<!--
<button type="submit" value="Aceptar">class="btn btn-link" Ver todos los Registros
</div>
<div class="col-md-3 center-block quitar-float text-center espacio-arriba">
<button type="reset"
value="Borrar"
class="btn btn-default espacio-derecha">Limpiar
</button>
<button type="submit"
name="enviar"
value="boton2"
onClick="envia('imp.php?id2')"
class="btn btn-default" >Consultar
</button> </button>
</div>
Codigo del producto:
<input type="text" name="codigo" maxlength="10">
<input type="submit" value="Aceptar">
-->
</form>
</body>
</html>