-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (85 loc) · 4.05 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!doctype html>
<html lang="pt-BR">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<!-- estilo -->
<link rel="stylesheet" href="./css/style.css">
<title>Criar conta - Health Track</title>
</head>
<body>
<!--NAV BAR-->
<nav class="navbar navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="#">
<img src="./images/clipboard-heart-fill.svg" alt="" width="30" height="24" class="d-inline-block align-text-top">
Health Track
</a>
</div>
</nav>
<!--FIM NAR BAR-->
<!--FORMULÁRIO DE LOGIN-->
<div class="container" id="loginForm">
<div class="row justify-content-center align-items-center vh-100">
<div class="col-12 col-sm-10 col-md-8 col-lg-6 col-xl-5 col-xxl-4">
<form class="border rounded" id="boxForm">
<div class="row">
<div class="col mb-2">
<h1>Criar conta</h1>
<div class="form-floating mb-3">
<input type="text" class="form-control" id="floatingInput" placeholder="Nome completo">
<label for="floatingInput">Nome completo</label>
</div>
<div class="form-floating mb-3">
<input type="email" class="form-control" id="floatingInput" placeholder="[email protected]">
<label for="floatingInput">E-mail</label>
</div>
<div class="form-floating mb-3">
<input type="password" class="form-control" id="floatingPassword" placeholder="Password">
<label for="floatingPassword">Senha</label>
</div>
<div class="form-floating mb-3">
<input type="password" class="form-control" id="floatingPassword" placeholder="verifyPassword">
<label for="floatingPassword">Confirmar senha</label>
</div>
</div>
</div>
<div class="row mt-2">
<div class="col">
<div class="form-check mb-3">
<input class="form-check-input" type="checkbox" value="" id="terms">
<label class="form-check-label" for="flexCheckDefault" required>
Li e concordo com os termos de uso e privacidade
</label>
</div>
</div>
</div>
<div class="row mb-4">
<div class="col">
<a href="./meusdados.html" class="btn w-100" role="button" id="submitButton">Cadastrar</a>
</div>
</div>
<!--LOGIN SOCIAL-->
<div class="row">
<div class="col-12">
<h2>ou continue com as redes sociais</h2>
<a class="btn btn-outline-primary mb-2 w-100" href="#" role="button" id="fbLogin">Continuar com o Facebook</a>
<a class="btn btn-outline-danger mb-2 w-100" href="#" role="button">Continuar com o Google</a>
<a class="btn btn-outline-dark mb-2 w-100" href="#" role="button">Continuar com a Apple</a>
</div>
</div>
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="./login.html">Já tem uma conta? Faça login!</a>
</form>
</div>
</div>
</div>
</div>
<!--FIM FORMULÁRIO DE LOGIN-->
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p" crossorigin="anonymous"></script>
</body>
</html>