forked from p-m-project/medium-clone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset-password.html
More file actions
94 lines (78 loc) · 3.9 KB
/
Copy pathreset-password.html
File metadata and controls
94 lines (78 loc) · 3.9 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<title>Reset your password</title>
<meta charset="UTF-8">
<meta name="keyword" content="medium clone reset password">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/navbar.css">
<link rel="stylesheet" type="text/css" href="css/signup-signin.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div>
<!--navigation of page when user is --not-- signed in-->
<nav class="nav">
<nav class="nav-container">
<div >
<div class="nav-icon">
<div class="icon-title">
<!-- this tag always links to the home page-->
<a href="/">
<img src="media/MEDIUM-SBU34.png">
</a>
</div>
</div>
</div>
<div class="nav-space"></div>
<div class="nav-links" style="width: fit-content;">
<a href="/new-story" class="active">Get Started</a>
<a href="/signin-page">Sign In</a>
<a href="#about">About</a>
<div class="topnav-sandwich" >
<a onclick="showMenu()">
<span class="fa fa-bars" ></span>
</a>
<div class="topnav-sandwich-links" style="display: none;">
<!-- only the active page -->
<a href="/new-story" class="active">Get Started</a>
<a href="/signin-page">Sign In</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</div>
</div>
<div class="search-container">
<form action="/action_page.php">
<input type="text" placeholder="Search.." name="search">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
</div>
</nav>
</nav>
<div class="main">
<div class="form-container">
<div class="signin-form">
<div class="signin-form-head" >
</div>
<div class="signin-form-body">
<!-- sign in form start-->
<form method="POST">
<div class="form-group">
<input type="password" name="password" class="form-control" placeholder="Enter Your New Password">
</div>
<div class="form-group">
<input type="password" name="password" class="form-control" placeholder="Confirm Your New Password">
</div>
<input type="submit" name="Update" class="btn btn-primary w-100" value='Update Password'>
</form>
</div>
</div>
</div>
</div>
</div>
<script src="js/nav.js"></script>
</body>
</html>