-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (47 loc) · 2.23 KB
/
index.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Form Validation</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.0/css/all.min.css">
</head>
<body>
<div class="container">
<header>
<i class="fa-solid fa-user-gear"></i>
<h1>Cadastre-se no Sistema</h1>
</header>
<section>
<form action="#" id="form" class="form">
<div class="form-control">
<label for="name"><i class="fa-solid fa-user-pen"></i> Nome</label>
<input type="text" id="name" placeholder="Digite seu nome">
<span class="message">teste</span>
</div>
<div class="form-control">
<label for="email"><i class="fa-solid fa-envelope"></i> E-mail</label>
<input type="email" id="email" placeholder="Digite seu e-mail">
<span class="message">teste</span>
</div>
<div class="senha">
<div class="form-control">
<label for="senha"><i class="fa-solid fa-lock"></i> Senha</label>
<input type="password" id="senha" placeholder="Digite sua senha">
<span class="message">teste</span>
</div>
<div class="form-control">
<label for="repetir-senha"><i class="fa-solid fa-lock"></i> Repetir Senha</label>
<input type="password" id="repetir-senha" placeholder="Repetir senha">
<span class="message">teste</span>
</div>
</div>
<button type="submit" class="btn-enviar">Cadastar</button>
</form>
<h2 class="msg-sucesso">Formulário enviado!</h2>
</section>
</div>
<script src="main.js"></script>
</body>
</html>