-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
49 lines (38 loc) · 1.91 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
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<title>Rede de solidadariedade - COVID-19</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.16.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"></script>
<script src="js/funcoes.js"></script>
<script src="js/sweetalert.min.js"></script>
</head>
<body>
<div class="container" style="padding-top: 5%;text-align: center;">
<h1>Rede de solidadariedade - COVID-19</h1>
</div>
<div class="container" style="margin-top: 5%; max-width: 40%; align-items: center;">
<h2 style="text-align: center;">Login</h2>
<br>
<div class="col-md-12 align-self-center text-center">
<a href="login-voluntario.php" class="btn btn-info" role="button">Sou Voluntário</a>
<a href="login-vulneravel.php" class="btn btn-info" role="button">Sou Vulnerável</a>
</div>
<br><br>
<div class="col-md-12 align-self-center text-center">
<h4>Não possui cadastro?</h4>
<a style="margin-right: 5%;" href="cadastro-voluntario.php">Cadastrar voluntário</a>
<a href="cadastro-vulneravel.php">Cadastrar vulnerável</a>
</div>
<br><br><br><br>
<div class="col-md-12 align-self-center text-center">
<img src="img/logo-lesse.png" alt="logo" style="width:25%; margin-left:10%; margin-right: 10%;">
<img src="img/unipampa.jpg" alt="logo" style=" width:50%;">
</div>
</div>
</body>
</html>