This repository was archived by the owner on Nov 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgotpass.html
More file actions
123 lines (123 loc) · 5.12 KB
/
Copy pathforgotpass.html
File metadata and controls
123 lines (123 loc) · 5.12 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<title>ABA Lookup - Forgot Password</title>
<meta name="description" content="" />
<link href="css/font-awesome.css" rel="stylesheet" type="text/css" />
<link href="css/general.css" rel="stylesheet" type="text/css" />
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<header>
<div class="container clearfix">
<h1>ABA Lookup</h1>
<!--
<nav class="right">
<div class="icon">
<i class="icon-search"></i>
</div>
<a href="#">Search</a>
<div class="icon">
<i class="icon-user"></i>
</div>
<a href="#">My Profile</a>
</nav>
-->
</div>
</header>
<div id="content">
<div class="container clearfix">
<h2>Forgot Password</h2>
<div class="left">
<form action="#" method="post">
<div class="row">
<label for="emailaddr">Email address</label>
<input id="emailaddr" type="email" placeholder="Email address" required />
</div>
<div class="row">
<input id="login" type="submit" value="Send" />
</div>
</form>
</div>
<div class="right">
<h3>Details</h3>
<p>
Forgot your password? Well no problem just enter your e-mail into the space to the left and click the send button below it. We will send out an e-mail containing your user name and password shortly after you click send.
</p>
</div>
</div>
</div>
<footer>
<div class="container clearfix">
<div class="left">
<h4>Contact Us</h4>
<div class="soc">
<i class="icon-twitter"></i>
</div>
<div class="soc-tri"></div>
<div class="soc-link">Twitter</div>
<div class="soc">
<i class="icon-facebook"></i>
</div>
<div class="soc-tri"></div>
<div class="soc-link">Facebook</div>
<div class="soc">
<i class="icon-envelope"></i>
</div>
<div class="soc-tri"></div>
<div class="soc-link">Email</div>
<div class="soc">
<i class="icon-globe"></i>
</div>
<div class="soc-tri"></div>
<div class="soc-link">Website</div>
<!--
Ideally I'd like this
<a class="social" href="#">
<i class="icon-twitter"></i>
Twitter
</a>
But I'd at least be happy with this
<a class="social" href="#">
<i class="icon-facebook"></i>
<span class="social-triangle"></span>
Facebook
</a>
-->
</div>
<div class="center">
<h4>Navigation</h4>
<a href="#">Sponsors</a>
<a href="#">Documentation & Help</a>
<a href="#">MUN CompSci Society</a>
<a href="#">Autism Society NL</a>
<a href="#">Other Resources</a>
</div>
<div class="right">
<h4>About Us</h4>
<div class="about">
<h5>ABA Lookup</h5>
<p>
This software is copyright MUN Comp Sci Community Initiative and is licensed under MIT Open Source restrictions.
</p>
</div>
</div>
</div>
</footer>
<script type="text/javascript">
WebFontConfig = {
google: { families: [ 'Open+Sans:400,800,700:latin' ] }
};
(function() {
var wf = document.createElement('script');
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
wf.type = 'text/javascript';
wf.async = 'true';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(wf, s);
})();
</script>
</body>
</html>