This repository has been archived by the owner on Jun 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
43 lines (41 loc) · 2 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Pasteleria Doña Rosa</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="FrWork/bootstrap/css/bootstrap.css" />
<link rel="stylesheet" type="text/css" media="screen" href="FrWork/bootstrap/css/login.css" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
</head>
<body class="text-center">
<!-- <section>
<div class="col-12">
<form class="form-signin" method="post" action="controladores/login.php">
<img class="" src="logo.png" alt="" width="260" height="230">
<h3 class="text-muted py-2">Acceso Empleado</h3>
<label for="usuario" class="sr-only">Usuario</label>
<input type="text" id="usuario" name="usuario" class="form-control" placeholder="Usuario" required autofocus>
<label for="pass" class="sr-only">Constraseña</label>
<input type="password" id="pass" name="pass" class="form-control" placeholder="Contraseña" required>
<button class="btn btn-lg btn-danger btn-block" type="submit">Entrar</button>
<p class="mt-5 mb-3 text-muted">© 2018 Pasteleria Doña Rosa</p>
</form>
</div>
</section> -->
<footer>
<div class="container">
<div class="col">
<a href="/web/index.html" class="btn-block btn btn-success p-2">Pagina Web</a>
<a href="/tienda/index.php" class="btn-block btn btn-primary p-2">Tienda Online</a>
<hr class="mb-4">
<a href="ingresar.php" class="btn-block btn btn-danger p-2">Administrador</a>
<a href="ingresar.php" class="btn-block btn-dark p-2">Ventas Local</a>
<a href="ingresar.php" class="btn-block btn btn-warning p-2">Cajero</a>
</div>
</div>
</footer>
</body>
</html>