-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlostpassword.html
195 lines (151 loc) · 4.04 KB
/
lostpassword.html
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
<html>
<head>
<link rel="shortcut icon" href="logo.ico" />
<title>Lost Password :: jsCard</title>
<style type="text/css">
body
{
background-color: #607AC5;
background-repeat: repeat-y;
background-image: url( 'images/bkgnd.jpg' );
background-position: center center;
}
#stage
{
position: absolute;
top: 0px;
width: 705px;
height: 100%;
left: 50%;
margin-left: -352px;
}
#content
{
position: absolute;
top: 0px;
left: 50%;
margin-left: -352px;
width: 701px;
}
#maincolumn
{
position: absolute;
top: 242px;
left: 30px;
width: 600px;
font-family: "Trebuchet MS", Verdana, Arial, sans-serif;
font-size: 12px;
line-height: 22px;
text-align: justify;
}
#maincolumn h1
{
font-size: 18px;
}
#maincolumn table td.inputlabel
{
width: 150px;
font-family: "MS Trebuchet", Verdana, Arial, sans-serif;
font-size: 13px;
color: #888;
}
#maincolumn table td
{
padding-bottom: 8px;
}
#maincolumn table td input
{
font-family: "MS Trebuchet", Verdana, Arial, sans-serif;
font-size: 14px;
padding: 3px;
width: 100%;
}
#maincolumn table td.buttonrow input
{
width: auto;
}
.errnote
{
font-size: 18px;
padding: 10px;
color: #B34F4F;
background-color: #F4E1E1;
}
</style>
<script type="text/javascript">
/* Client-side access to querystring name=value pairs
Version 1.2.3
22 Jun 2005
Adam Vandenberg
*/
function Querystring(qs) { // optionally pass a querystring to parse
this.params = new Object()
this.get=Querystring_get
if (qs == null)
qs=location.search.substring(1,location.search.length)
if (qs.length == 0) return
// Turn <plus> back to <space>
// See: http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.13.4.1
qs = qs.replace(/\+/g, ' ')
var args = qs.split('&') // parse out name/value pairs separated via &
// split out each name=value pair
for (var i=0;i<args.length;i++) {
var value;
var pair = args[i].split('=')
var name = unescape(pair[0])
if (pair.length == 2)
value = unescape(pair[1])
else
value = name
this.params[name] = value
}
}
function Querystring_get(key, default_) {
// This silly looking line changes UNDEFINED to NULL
if (default_ == null) default_ = null;
var value=this.params[key]
if (value==null) value=default_;
return value
}
</script>
</head>
<body>
<div id="stage"><br/></div>
<div id="content">
<img src="images/header.jpg" border="0" />
<div id="maincolumn">
<h1>Lost Password.</h1>
<p>
If you've lost your passsword, we can e-mail it to you. Just enter your username in the field below, and the
password will be sent to the e-mail address we have on file for that account. For security reasons, we can't
tell you if you entered your username incorrectly, do please double check it before submitting.
</p>
<p>
If you didn't supply us with a valid e-mail address when signing up, then <a href="mailto:#">get in touch</a> with
us and we'll ask you your secret question. Give the right answer, and we'll send you your password. If you can't answer
your secret question, AND you don't remember your password, AND we don't have a valid e-mail address for you then...
well... there's probably not a whole lot we can do. But you can take some small comfort in knowing that nobody else
will ever get your private data. Except for the guy who happens to have the e-mail address we have on file for you.
</p>
<p>
He'll have no trouble.
</p>
<form method="POST" action="lostpassword.php">
<table width="100%" cellspacing="10" border="0">
<tr>
<td class="inputlabel">Username:</td>
<td><input type="text" name="jssuname" /></td>
</tr>
<tr>
<td class="buttonrow" colspan="2" align="right">
<input type="reset" value="Clear" />
<input type="submit" value="Send Me My Password" />
</td>
</tr>
</table>
</form>
</div>
</div>
</div>
</body>
</html>