forked from AppsDesignTeam7/RIN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resetPassword.htm
113 lines (81 loc) · 3.19 KB
/
resetPassword.htm
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
<!doctype html>
<html lang="en">
<head>
<meta charset = "utf-8">
<title>Login Page</title>
<link rel="stylesheet" type="text/css" href="_css/styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
</head>
<body>
<header>
<!--Banner-->
<div id = "banner">
<a href = "index.htm">
<div id="linkToHome">
<h1>RIN</h1>
<h2>Reset Password</h2>
<br>
</div>
</a>
<!--Site navigation for smaller screens-->
<div id = "smallScreenNav">
<div class="dropdownNav">
<button class="dropbtnNav"><i class="fa fa-navicon"></i></button>
<div class="dropdown-contentNav">
<a href="index.htm">Home</a>
<a href="createEvent.htm">Create New Event</a>
<!--Display this with PHP if the user is not logged in-->
<a href="login.htm">Login</a>
<!--End of section to hide-->
<!--Hide this with php if the user is logged in-->
<div class="dropdownIn">
<a href="javascript:void(0)" class="dropbtnIn">My Account</a>
<div class="dropdown-contentIn">
<a href="myFavourites.htm">My Favourites</a>
<a href="manageMyEvent.htm">Manage My Events</a>
<a href="resetPassword.htm">Reset Password</a>
<a href="index.htm">Logout</a>
</div>
</div>
<!--end of section to hide-->
<a href="help.htm">Help</a>
</div>
</div>
</div>
<!--Site navigation for larger screens-->
<div id="siteNav">
<ul id="navBar">
<li class="navLink" id="homeLink"><a href="index.htm" class="indexLink"><div class="linkText">HOME</div></a></li>
<li class="navLink" id="createEventLink"><a href="createEvent.htm"><div class="linkText">CREATE NEW EVENT</div></a></li>
<!--Hide this section with php if the user is not logged in; hide otherwise -->
<li class = "dropdown" class="navLink" id="myAccountLink">
<a href="javascript:void(0)" class="dropbtn"><div class="linkText">MY ACCOUNT</div></a>
<div class="dropdown-content">
<a href="myFavourites.htm">My Favourites</a>
<a href="manageMyEvent.htm">Manage My Events</a>
<a href="resetPassword.htm">Reset Password</a>
<a href="index.htm">Logout</a>
</div>
</li>
<!--end of section-->
<!--Show this section with php if the user is not logged in; hide if logged in-->
<!--
<li class="navLink" id="myAccountLink"><a href = "login.htm"><div class="linkText">LOGIN</div></a></li>
-->
<!--end of section-->
<li class="navLink" id="helpLink"><a href="help.htm"><div class="linkText">HELP</div></a></li>
</ul>
</div>
</div>
</header>
<main>
<h4>Reset Password</h4>
<form>
<input type="a" name = "emailAddress" placeholder = "Please enter your email address">
</form>
<br>
<button type = "submit" class="formSubmissionButton">Reset Password</button>
</main>
</body>
</html>