-
Notifications
You must be signed in to change notification settings - Fork 0
/
register.html
42 lines (39 loc) · 2.22 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
<!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">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
<title>Scrapbook - Cadastro</title>
</head>
<body id='body'>
<div class="container-field d-flex">
<div class="field-sides background"></div>
<div class="field-sides background2">
<img src="./img/key.png" alt="key" class="key-img">
<div class="field-content text-center">
<h4 class="text-uppercase mb-4">criar nova conta</h4>
<form class="form-field">
<div class="container-inputs d-flex flex-column align-items-center justify-content-between mb-4">
<input type="text" id="reg-username" class="input-field rounded-3 mb-3" placeholder="Usuário">
<input type="password" id="reg-password" class="input-field rounded-3 mb-3" placeholder="Senha">
<input type="password" id="repeat-reg-password" class="input-field rounded-3 mb-1"
placeholder="Repita a Senha">
</div>
<button type="button" id="btn-register" class="button text-uppercase rounded-3 mb-3" onclick="onCreateAccount()"">criar conta</button>
<button type="button" class="login text-uppercase rounded-3 mb-3" onclick="onHaveAccount()">já possui uma conta? Faça login</button>
<p class="log-message"></p>
</form class=" form-field">
</div>
</div>
</div>
<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>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="./js/register.js"></script>
</body>
</html>