-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrecuperarSenha.html
More file actions
52 lines (36 loc) · 1.47 KB
/
recuperarSenha.html
File metadata and controls
52 lines (36 loc) · 1.47 KB
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
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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=Cairo:wght@200..1000&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap" rel="stylesheet">
<link rel="preloud" href="./css/style.css" as="style">
<link rel="stylesheet" href="./css/style.css">
<title>recuperar</title>
</head>
<body id="login" class="recuperarSenha">
<div class="logo">
<a href="./index.html"><img src="./imgs/Logo.svg" alt=""></a>
</div>
<form action="" method="POST">
<h1 class="titulo">Preencha os campos para<br> recuperar sua senha</h1>
<div class="bnt-google">
<img src="./imgs/google.svg" alt="">
<a href="/" class="titulo">Entrar com Google</a>
</div>
<p class="titulo ou">Ou</p>
<div class="campo-nome">
<input type="text" name="nome" id="nome" autocomplete="off" placeholder="Nome completo">
</div>
<div class="campo-email">
<input type="email" name="email" id="email" autocomplete="off" placeholder="Email">
</div>
<div class="bnt-entrar">
<a href="./codigoConfirmacao.html">Continuar</a>
</div>
<a href="./login.html" class="sub-titulo">Lembro sua senha?<span class="titulo"> Faça seu login</span></a>
</form>
</body>
</html>