-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresetpassword.php
53 lines (40 loc) · 1.99 KB
/
resetpassword.php
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
<?php
include'conn.php';
//include('app_logic.php');
session_start();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Reset Password</title>
<!-- Font Icon -->
<link rel="stylesheet" href="fonts/material-icon/css/material-design-iconic-font.min.css">
<!-- Main css -->
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="signin-form">
<h2 class="form-title">Recovery Details</h2>
<p>A token will be sent to you through Email to recover your forgotten details</p>
<form method="POST" class="register-form" id="login-form" action = "login.inc.php">
<div class="form-group">
<label for="your_email"><i class="zmdi zmdi-account material-icons-name"></i></label>
<input type="text" name="emailz" id="your_name" placeholder="Your Email"/required>
</div>
<div class="form-group">
<label for="your_pass"><i class="zmdi zmdi-lock"></i></label>
<input type="password" name="pazzword" id="your_pass" placeholder="Password"/required>
</div>
</form>
<div class="form-group form-button" value = "Reset">
<input type="submit" name="signin" id="signin" class="form-submit" value="Reset"/>
</div>
<!-- JS -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="js/main.js"></script>
</div>
</body>
</html>