-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
81 lines (68 loc) · 3.9 KB
/
register.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
<!DOCTYPE html>
<html>
<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>VIRTUALTER - Login</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<link rel="stylesheet" href='loginAndRegister.css'/>
<script src='firebaseSetup.js' type='module'></script>
</head>
<body>
<section class="vh-100 gradient-custom">
<div class="container py-5 h-100">
<div class="row d-flex justify-content-center align-items-center h-100">
<div class="col-12 col-md-8 col-lg-6 col-xl-5">
<div class="card bg-dark text-white" style="border-radius: 1rem;">
<div class="card-body p-5 text-center">
<div class="mb-md-5 mt-md-4 pb-5">
<h2 class="fw-bold mb-2">VIRTUALTER WEB</h2>
<p class="text-white-50 mb-5">Faça o seu registro no sistema</p>
<!-- EMAIL -->
<div class="form-outline form-white mb-4">
<input
type="email"
id="register-email"
class="form-control form-control-lg"
required='required'
placeholder="Email..."
/>
<label class="form-label">Email</label>
</div>
<!-- SENHA -->
<div class="form-outline form-white mb-4">
<input
type="password"
id="register-password"
class="form-control form-control-lg"
required='required'
placeholder='Senha...'
/>
<label class="form-label">Senha</label>
</div>
<!-- TIPO DE USUÁRIO -->
<!-- Ver como pegar o valor das opções -->
<div class="form-outline form-white mb-4">
<select class="form-select" id='register-userType'>
<option value="paciente">Paciente</option>
<option value="terapeuta">Terapeuta</option>
</select>
<br>
<label class="form-label">Tipo de usuário</label>
</div>
<!-- BOTÃO DE REGISTRO -->
<button class="btn btn-outline-light btn-lg px-5" id='register-button'>Registrar</button>
</div>
<!-- BOTÃO PARA LEVAR AO REGISTRO -->
<div>
<p class="mb-0">Já possui conta? <a href="index.html" class="text-white-50 fw-bold">Login</a></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
</body>
</html>