-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreset_password.php
More file actions
32 lines (26 loc) · 978 Bytes
/
reset_password.php
File metadata and controls
32 lines (26 loc) · 978 Bytes
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
<?php include "head.inc.php" ?>
<body>
<?php include "header.html" ?>
<div class = "container mt-3 pt-3">
<div class = "row">
<div class = "col-15 col-sm-15 col-md-30 m-auto">
<div class = "card-transparent">
<div class = "card-body">
<div class="card-body align-items-center d-flex justify-content-center">
<form class= ".login-form" action="" method="post">
<label for = "title"><h1> Reset Password </h1></label>
<p>Enter the email address which is linked with your ShopiFood account.</p>
<p>If you did not forget your password, sign in <a href="login.php">here</a></p>
<input type ="text" name = "email" value = "" placeholder = "Email address" >
</br>
<input type ="submit" name="Continue" value = "Continue" class = "submit-button";></input>
</br>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
<?php include "footer.html" ?>
</html>