-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathindex.html
executable file
·49 lines (43 loc) · 1.73 KB
/
index.html
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
<!doctype html>
<html lang="pt-br" >
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Controle de Pizzaria</title>
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/estilo.css">
</head>
<body class="page-main">
<div class="grid-container">
<div class="grid-x grid-padding-x">
<div class="cell small-12 medium-4 large-4" ></div>
<div class="cell small-12 medium-4 large-4" id="form-login">
<form method="post" action="php/login.php">
<h1>Sistema de Controle de Pizzaria</h1>
<div class="cell">
<label>Email:</label>
<input type="email" name="email" />
</div>
<div class="cell">
<label>Senha:</label>
<input type="password" name="senha" />
</div>
<div class="cell small-6 medium-6 large-4">
<input type="submit" name="btn" class="button" value="ENTRAR">
</div>
</form>
</div>
</div>
<footer>
<div class="cell small-12 medium-4 large-4">
<br/><br/><br/><br/><p id="copyright">Copyright © Reinaldo Junio Dias de Abreu</p>
</div>
</footer>
</div>
<script src="js/vendor/jquery.js"></script>
<script src="js/vendor/what-input.js"></script>
<script src="js/vendor/foundation.js"></script>
<script src="js/app.js"></script>
</body>
</html>