-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot_password.html
42 lines (40 loc) · 1.3 KB
/
forgot_password.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
<!DOCTYPE html>
<html lang="en">
<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">
<title>Document</title>
<script src="https://kit.fontawesome.com/059c5846e8.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="./css/forgot_password.css">
<link rel="stylesheet" href="./css/style.css">
<script src="./js/main.js"></script>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
</head>
<body>
<div id="header"></div>
<div id="continer">
<h1>Forgot your password?</h1>
<div style="display: flex;">
<i class="fas fa-cloud"></i>
<p style="margin-top: -5px; color: grey;margin-left: 3%;">Your sign-in is the same at Nordstrom and Nordstorm Rack.</p>
</div>
<p>Start by entering your email.</p>
<h4>Email address</h4>
<input type="email" style="width: 90%; height: 40px;margin-top: -20px;" id="email">
<button>Next</button>
</div>
<div id="footer"></div>
</body>
</html>
<script src="./js/forgot_password.js"></script>