-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot_password.html
More file actions
60 lines (54 loc) · 1.77 KB
/
forgot_password.html
File metadata and controls
60 lines (54 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forgot Password - MELOCORE</title>
<link rel="stylesheet" href="melo.css">
</head>
<body>
<header>
<div class="container">
<div class="logo">
<img src="C:\Users\aniru\OneDrive\Documents\melo.jpg" alt="MELOCORE Logo" class="tree-logo">
<div class="logo-text">
<h1>MELOCORE</h1>
<h5><i>A WAY TO YOUR INNER HARMONY</i></h5>
</div></div>
<nav>
<ul>
<li><a href="home.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="services.html">Services</a></li>
<li><a href="articles.html">Articles</a></li>
<li><a href="therapy.html">Therapy</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</div>
</header>
<section class="hero">
<div class="container">
<h2>Forgot Password</h2>
<p>Enter your email address to reset your password.</p>
</div>
</section>
<section class="intro">
<div class="container">
<h2>Reset Your Password</h2>
<form action="submit_forgot_password_form.php" method="post">
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<button type="submit">Submit</button>
</form>
</div>
</section>
<footer>
<div class="container">
<p>© 2024 MELOCORE. All rights reserved.</p>
</div>
</footer>
</body>
</html>