-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastroPessoa.html
42 lines (35 loc) · 1.63 KB
/
cadastroPessoa.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 name="viewport" content="width=device-width, initial-scale=1.0">
<title>Materialize</title>
<link rel="icon" href="./fotos/favicon.ico">
<link rel="stylesheet" href="./styles/style.css">
</head>
<body class="body">
<div class="container">
<div class="img">
<img src="./fotos/LogoSample_ByTailorBrands (1).jpg" alt="logo">
</div>
<form class="form" id="createUserForm">
<h2> Criar conta </h2>
<label for="">Nome completo</label>
<input class="input-conta" type="text" id="nameUser" required maxlength="50" placeholder="*">
<label for="">Email</label>
<input class="input-conta" type="text" id="emailUser" required maxlength="50" placeholder="*">
<label for="">Senha</label>
<input class="input-conta" type="password" id="passwordUser" required maxlength="25" placeholder="*">
<label for="">Celular</label>
<input class="input-conta" type="tel" id="numberUser" required minlength="11" maxlength="11" placeholder="*">
<div class="btns-cadastro">
<button class="btn-enviar-cadastro" type="submit">Enviar</button>
<button class="btn-limpar-cadastro" type="reset">Limpar</button>
<button class="btn-cancelar-cadastro" onclick="irParaPgLogin()" type="button">Cancelar</button>
</div>
</form>
</div>
<script src="/js/redirection/cadastro.js"></script>
<script src="/js/createUser.js"></script>
</body>
</html>