forked from alexisadrianahp/prueba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
169 lines (153 loc) · 7.3 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?php include 'template/header.php' ?>
<?php
include_once "model/conexion.php";
$sentencia = $bd -> query("select * from usuarios");
$usuarios = $sentencia->fetchAll(PDO::FETCH_OBJ);
/*print_r($usuarios);*/
?>
<div class="container mt-3">
<!--ALERTAS-->
<div class="row justify-content-center">
<!--Inicio alerta-->
<?php
if(isset($_GET['mensaje'])and $_GET['mensaje']=='falta'){
?>
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<strong>ERROR</strong> Rellena todos los campos
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php
}
?>
<!---------------------------------------------------------->
<?php
if(isset($_GET['mensaje'])and $_GET['mensaje']=='registrado'){
?>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>LISTO</strong> Se registraron tus datos correctamente.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php
}
?>
<!-------------------------------------------------------------->
<?php
if(isset($_GET['mensaje'])and $_GET['mensaje']=='error'){
?>
<div class="alert alert-danger alert-dismissible fade show" role="alert">
<strong>ERROR</strong> Vuelve a intentar.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php
}
?>
<!-------------------------------------------------------------->
<?php
if(isset($_GET['mensaje'])and $_GET['mensaje']=='modificado'){
?>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>LISTO</strong> El usuario se ha modificado correctamente.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php
}
?>
<!-------------------------------------------------------------->
<?php
if(isset($_GET['mensaje'])and $_GET['mensaje']=='eliminado'){
?>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>ELIMINADO</strong> El usuario se ha eliminado exitosamente.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php
}
?>
<!-------------------------------------------------------------->
<?php
if(isset($_GET['mensaje'])and $_GET['mensaje']=='sesion'){
?>
<div class="alert alert-success alert-dismissible fade show" role="alert">
<strong>BIENVENIDO</strong> Iniciaste sesión de forma correcta.
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php
}
?>
<!--Fin de la alerta-->
</div>
<!--CONTENIDO-->
<div class="row justify-content-center">
<div class="col-md-8 mt-3 mb-3">
<div class="card" >
<div class="card-header text-white" style="background-color: #843f52;">
Lista de usuarios
</div>
<div class="p-4">
<table class="table-align-middle" >
<thead>
<tr style="color: #843f52;">
<th scope="col">Id</th>
<th scope="col">Usuario</th>
<th scope="col">Nombre</th>
<th scope="col">Contraseña</th>
<th scope="col">Puesto</th>
<th scope="col">Opciones</th>
<th scope="col"colspan="2"> </th>
</tr>
</thead>
<tbody>
<tr>
<?php
foreach($usuarios as $dato){
?>
<!--IMPRESION DE LOS USUARIOS-->
<td scope="row"><?php echo $dato->id;?></td>
<td><?php echo $dato->name;?></td>
<td><?php echo $dato->user_name;?></td>
<td><?php echo $dato->password;?></td>
<td><?php echo $dato->puesto;?></td>
<td><a href="editar.php?id=<?php echo $dato->id;?>"><i class=" text-success bi bi-pencil-square"></i></td>
<td><a onclick="return confirm('¿Estas seguro de eliminar?');" href="eliminar.php?id=<?php echo $dato->id;?>"><i class="text-danger text-center bi bi-trash3"></i></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
</div>
</div> <!--FIN DEL COL-MD-9-->
<div class="col-md-4 mt-3 mb-3">
<div class="card">
<div class="card-header text-white" style="background-color: #843f52;">
Ingresar nuevos usarios
</div>
<!--FORMULARIO DONDE SE AGREGAN LOS USUARIOS, MANDA A LLAMAR A REGISTRAR.PHP--->
<form action="registrar.php" class="p-4" method="POST">
<div class="mb-3">
<label class="form label">Usuario</label>
<input type="text" class="form-control" name="txtUsuario" autofocus required placeholder="Nombre de usuario">
</div>
<div class="mb-3">
<label class="form label">Nombre</label>
<input type="text" class="form-control" name="txtNombre" autofocus required placeholder="Escribe el nombre">
</div>
<div class="mb-3">
<label class="form label">Contraseña</label>
<input type="text" class="form-control" name="txtContrasena" autofocus required placeholder="Contraseña">
</div>
<div class="mb-3">
<label class="form label">Puesto</label>
<input type="text" class="form-control" name="txtPuesto" autofocus required placeholder="Ejemplo: Contabilidad">
</div>
<div class="d-grid">
<input type="hidden" name="oculto" value="1" >
<input type="submit" class="btn btn-primary" value="Registrar" style="background-color: #843f52; border-color: #843f52 ">
</div>
</form>
</div>
</div> <!--FIN DEL COL-MD-4-->
</div> <!--FIN DEL ROW-->
</div> <!--FIN DEL CONTAINER-->
<?php include 'template/footer.php' ?>