-
Notifications
You must be signed in to change notification settings - Fork 0
/
listaCompras.html
36 lines (32 loc) · 1.48 KB
/
listaCompras.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
<html>
<head>
<title>Stock :: Menu Principal</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="estilos.css">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="css2/bootstrap.min.css" rel="stylesheet">
<link href="css2/style.css" rel="stylesheet">
</head>
<body>
<br><br>
<div class="container-fluid">
<div class="row">
<div class="col-md-4">
</div>
<div class="col-md-4">
<button onclick="window.location.href='menu.php'" class="btn btn-block btn-lg btn-outline-success">Voltar ao Menu</button><br><br>
<button type="button" class="btn btn-block btn-lg btn-outline-success" onclick="window.location.href='processa.php?acao=novalistacompra'"> Gerar Nova Lista</button><br>
<button type="button" class="btn btn-block btn-lg btn-outline-success" onclick="window.location.href='processa.php?acao=listaAtual"> Lista Atual</button><br>
<button type="button" class="btn btn-block btn-lg btn-outline-success" onclick="window.location.href='processa.php?acao=LOGlista'"> Listas Anteriores</button><br>
</div>
<div class="col-md-4">
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>