-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadmin.php
53 lines (47 loc) · 1.95 KB
/
admin.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
<?php include("backend/sesion.php") ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>4life entregas a Mexico y Venezuela</title>
<!--Import materialize.css-->
<link rel="stylesheet" href="assets/css/main.css">
<link type="text/css" rel="stylesheet" href="lib/materialize/css/materialize.css" media="screen,projection"/>
<!--Let browser know website is optimized for mobile-->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
</head>
</head>
<body>
<header>
<nav class="header">
<div class="nav-wrapper">
<span class="brand-logo header__logo">
4Life
</span>
<ul id="nav-mobile" class="left hide-on-med-and-down right">
<li><a class="waves-effect waves-light" href="backend/salir.php">Salir</a></li>
</ul>
</div>
</nav>
</header>
<main class="row container">
<section class="container">
<h5>Bienvenido Administrador <? echo $_SESSION['login_user'] ?></h5><br>
</section>
<section class="row">
<a href="backend/pedidosadmin.php"><div class="waves-effect waves-light col s5 offset-s1 icon-block icon__box ">
<h2 class="center white-text"><i class="mdi-editor-format-list-bulleted icon-size"></i></h2>
<h5 class="center white-text">Ver todos los pedidos</h5>
</div></a>
<a href="backend/usuariosadmin.php"><div class="waves-effect waves-light col s5 offset-s1 icon-block icon__box ">
<h2 class="center white-text"><i class="mdi-image-timer-auto icon-size"></i></h2>
<h5 class="center white-text">Ver todos los Clientes</h5>
</div></a>
</section>
</main>
<?php include("footer.php") ?>
<!--Dependencias-->
<script type="text/javascript" src="lib/jquery-2.1.3.js"></script>
<script type="text/javascript" src="lib/materialize/js/materialize.js"></script>
</body>
</html>