-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.php
More file actions
36 lines (30 loc) · 1.02 KB
/
admin.php
File metadata and controls
36 lines (30 loc) · 1.02 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
<?php
include('config/session.php');
?>
<!DOCTYPE html>
<html lang="es">
<head>
<?php include("templates/headTags.php");?>
</head>
<body>
<div id="root">
<?php include("templates/header.php");?>
<?php include("templates/adminNav.html");?>
<div class="titleContainer row">
<h1 class="title">Todos los usuarios</h1>
<form>
<input type="text" placeholder="Buscar usuario" name="search">
<select name="category" name="type">
<option value="" selected>Todos</option>
<option value="normal">Normal</option>
<option value="administrador">Administrador</option>
</select>
<button class="buttonGen">Buscar</button>
</form>
</div>
<div id="results"></div>
</div>
<!--===============================================================================================-->
<script src="src/js/adminGet.js"></script>
</body>
</html>