-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgetPass.html
155 lines (146 loc) · 5.59 KB
/
forgetPass.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
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en" dir="ltr">
<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>Megaminds Academy</title>
<meta name="description" content="megaminds-academ" />
<meta name="keywords" content="megaminds-academ" />
<link rel="icon" type="image/x-icon" href="./images/iconePage.webp" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/css/intlTelInput.css"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17.0.8/js/intlTelInput.min.js"></script>
<link rel="stylesheet" href="css/bootstrap.css" />
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.rtl.min.css"
integrity="sha384-gXt9imSW0VcJVHezoNQsP+TNrjYXoGcrqBZJpry9zJt8PCQjobwmhMGaDHTASo9N"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="./css/owl.carousel.min.css" />
<link rel="stylesheet" href="./css/owl.theme.default.min.css" />
<link rel="stylesheet" href="./css/all.min.css" />
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<nav class="navbar navbar-expand-lg bg-body-tertiary">
<div class="container">
<a class="navbar-brand" href="index.html"
><img src="./images/megaminds-academy.webp" alt="logo"
/></a>
<button
class="navbar-toggler collapsed"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="toggler-icon top-bar"></span>
<span class="toggler-icon middle-bar"></span>
<span class="toggler-icon bottom-bar"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="aboutUs.html">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="courses.html">Courses</a>
</li>
<li class="nav-item">
<a class="nav-link" href="careers.html">Careers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contactUs.html">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="store.html">Store</a>
</li>
</ul>
<div class="endnav">
<!-- if you need "Sign In" add className "hide" to dropdown -> and true otherwise -->
<a href="signIn.html" class="btn_page btn_nav">Sign In</a>
<div class="dropdown hide">
<h4
class="dropdown-toggle f-b"
data-bs-toggle="dropdown"
aria-expanded="false"
>
Profile
</h4>
<ul class="dropdown-menu">
<li>
<a class="dropdown-item" href="profile.html">
<img src="./images/myProfile.webp" alt="myProfile" />
<p>My Profile</p></a
>
</li>
<li>
<a class="dropdown-item" href="followUp.html">
<img src="./images/followUp.webp" alt="myProfile" />
<p>Follow-up</p></a
>
</li>
<li>
<a class="dropdown-item" href="myCart.html">
<img src="./images/myCart.webp" alt="myProfile" />
<p>My Cart</p></a
>
</li>
<li>
<a class="dropdown-item" href="myOrders.html">
<img src="./images/myOrder.webp" alt="myOrder" />
<p>My Orders</p></a
>
</li>
<li>
<a class="dropdown-item" href="addresses.html">
<img src="./images/addresses.webp" alt="Addresses" />
<p>Addresses</p>
</a>
</li>
<li>
<a class="dropdown-item" href="signIn.html"
><p style="color: black">Log Out</p></a
>
</li>
</ul>
</div>
<button class="btn-lang" type="button">
<img src="./images/lang.svg" alt="lang" />
<p class="f-b">العربية</p>
</button>
</div>
</div>
</div>
</nav>
<section class="forget forget1 registration container">
<h2 style="margin-bottom: 30px" class="title2">Forget Password</h2>
<p>
Please enter your registered e-mail address for sending new password
</p>
<form action="" class="form_page">
<input
type="email"
class="input2 form-control"
placeholder="Email Address"
/>
<input type="submit" class="btn_page" value="Send OTP" />
</form>
</section>
<script src="js/popper.min.js"></script>
<script src="js/jquery-3.6.1.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="./js/owl.carousel.min.js"></script>
</body>
</html>