-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcadastro.html
36 lines (31 loc) · 1.26 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<script src="https://kit.fontawesome.com/12a892a853.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cadastro</title>
</head>
<body>
<form>
<h3>Budget</h3>
<h3>Cadastre sua conta</h3>
<a class="icone-ind" href="#">
<i class="fab fa-google"></i></a>
<a class="icone-ind" href="#">
<i class="fab fa-facebook"></i></a>
<a class="icone-ind" href="#">
<i class="fab fa-microsoft"></i></a>
<p>Ou</p>
<!-- campos de entrada -->
<input type="text" placeholder="Nome"><br>
<input type="email" placeholder="E-mail"> <br>
<input type="password" placeholder="Senha">
<input type="password" placeholder="Confirmar senha"> <br>
<input type="submit" value="Cadastrar-se">
<p> Já é um de nós?</p>
<a href="login.html">Acesse</a>
</form>
</body>
</html>