-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotPassword.html
More file actions
52 lines (45 loc) · 1.58 KB
/
Copy pathforgotPassword.html
File metadata and controls
52 lines (45 loc) · 1.58 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="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Recuperação de conta</title>
<!-- Custom styles-path -->
<link rel="stylesheet" href="css/style.css">
<!-- Font Awesome kit script -->
<script src="https://kit.fontawesome.com/a81368914c.js"></script>
<!-- Google Fonts Open Sans-->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="img/html-5.png">
</head>
<body>
<img class="wave" src="img/wave.svg">
<div class="container">
<div class="img">
<img src="img/personalization.svg">
</div>
<div class="login-container">
<form action="index.html">
<h2>Recuperar conta</h2>
<p>Informe o seu e-mail no campo abaixo</p>
<div class="input-div one">
<div class="i">
<i class="fas fa-envelope"></i>
</div>
<div>
<h5>E-mail</h5>
<input class="input" type="email">
</div>
</div>
<input type="submit" class="btn" value="Enviar">
<div class="account">
<p>Lembrou da senha ?</p>
<a href="index.html">Entrar</a>
</div>
</form>
</div>
</div>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>