-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
51 lines (48 loc) · 2.17 KB
/
cadastro.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
<!DOCTYPE html>
<html lang="en">
<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="styles/reset.css">
<link rel="stylesheet" href="styles/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap" rel="stylesheet">
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<title>7 Days of code | Devdartagnan</title>
</head>
<body>
<main class="container">
<section class="left-container">
<h1>Olá,</h1>
<h2>Cadastro</h2>
<form class="form js-form">
<label for="name">
Nome
<input type="text" class="form-field js-field" id="name" minlength="3" maxlength="120"
pattern="(^[a-zA-Z\s]*$)" name="name" required>
</label>
<label for="email-reg">
Email
<input class="form-field js-field" id="email-reg" name="email-reg" required type="email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2, 4}$">
</label>
<label for="password-reg">
Senha
<input class="form-field js-field" id="password-reg" name="password-reg" required type="password">
</label>
<label for="birth-date">
Data de Nascimento
<input class="form-field js-field" id="birth-date" name="birth-date" required type="date">
</label>
<a href="/index.html">login</a>
<button class="button" type="submit">Cadastrar</button>
</form>
</section>
<section class="imagem">
</section>
<script src="js/register.js"></script>
</main>
</body>
</html>