-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.html
46 lines (38 loc) · 1.66 KB
/
form.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
<!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">
<!------------------Icon custom--------------------->
<link rel="icon" href="img/logo.svg ">
<title>Sign In</title>
<!------------------ CSS custom link--------------------->
<link rel="stylesheet" href="css/style-form.css">
</head>
<body>
<main class="formolario">
<section class="formolario-introducao">
<div class="upper">
<a href="index.html"><img src="img/logo.svg" alt="Logo Nike"> </a>
<h1>BECOME A NIKE MEMBER</h1>
</div>
<form action="#">
<label for="nome">Name</label>
<input type="text" id="nome" name="nome" placeholder="Name" required>
<label for="email">E-mail</label>
<input type="email" id="email" name="email" placeholder="E-mail" required>
<label for="senha">Password</label>
<input type="password" id="senha" name="senha" placeholder="" required>
<label for="data">Birth Date</label>
<input type="date" id="data" name="data">
<div class="checkbox">
<input type="checkbox" id="checkbox" name="checkbox">
<label for="checkbox">I accept the company's terms and conditions.</label>
</div>
<button class="btn-enviar"><a href="index.html">Enviar</a></button>
</form>
</section>
</main>
</body>
</html>