-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathemailrem.php
More file actions
48 lines (36 loc) · 977 Bytes
/
emailrem.php
File metadata and controls
48 lines (36 loc) · 977 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Course Recommendation System</title>
<link rel="stylesheet" href="style/reset.css">
<link rel='stylesheet prefetch' href='style/font.css'>
<link rel="stylesheet" href="style/style.css">
</head>
<script>
<?php if($_GET['result']=="fail"){?>
window.alert("Wrong Username/Password combination");
<?php }
?>
</script>
<body>
<div class="pen-title">
<h1>Course Recommendation System</h1>
</div>
<!-- Form Module-->
<div class="module form-module">
<div class="toggle">
</div>
<div class="form">
<h2>Password Recovery</h2>
<form action="checkPassword" method="post">
<input type="text" placeholder="Email ID" name="emailid" required/>
<button>Recover</button>
</form>
</div>
<div class="cta"><a href="http://localhost/MiniProject/">Go Back</a></div>
</div>
<script src='JS/jquery.js'></script>
<script src="js/index.js"></script>
</body>
</html>