-
Notifications
You must be signed in to change notification settings - Fork 1
/
changePassword.html
58 lines (57 loc) · 2.5 KB
/
changePassword.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<!-- Framework CSS -->
<link rel="stylesheet" href="css/maincss.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="css/screen.css" type="text/css" media="screen, projection" />
<link rel="stylesheet" href="css/print.css" type="text/css" media="print" />
<!--[if lt IE 8]><link rel="stylesheet" href="css/ie.css" type="text/css" media="screen, projection" /><![endif]-->
<script type="text/javascript" language="javascript" >
</script>
</head>
<body onload="document.frmname.oldPass.focus()">
<!-- Container Begins-->
<div class="container">
<!--Header-->
<div class="topAlign append-1"><a href="index.html">Log Out</a> </div>
<span class="logo"></span>
<div class="orangeline" style="margin-top:75px;"> </div>
<!-- Main Content Begins-->
<div class="content marginAuto" title="Change Password">
<div class="borders span-16 ">
<div class="subcontent paddingLeft">
<form method="" name="formname">
<div class=" orangeheading">Change Password</div>
<p>Enter current password and then choose your new password. Click Submit when you are done.</p>
<p class="error">Errors...........</p>
<div class="prepend-2 span-11 last">
<div class="span-10 "><span class="rightAlign span-3">Old Password</span>
<input id="oldPass" name="oldPass" type="password" />
</div>
<div class="span-10 "><span class="span-3 rightAlign">New Password</span>
<input id="newPass" name="newPass" type="password" />
</div>
<div class="span-10 "><span class="span-3 rightAlign">Confirm Password</span>
<input id="cfrmPass" name="cfrmPass" type="password" />
</div>
<div class="clear"> </div>
<hr />
</div>
<div class="clear"></div>
<div class="prepend-5">
<input class="buttn " type="button" name="submit" value="Submit" onclick="location.href='home.html'"/>
<input class="buttn2" type="button" name="cancel" value="Cancel" onclick="location.href='yourSettings.html'"/>
</div>
</form>
<!--Subcontent Ends-->
</div>
</div>
</div>
<!--Main Content Ends-->
<div class="footer"> </div>
</div>
<!--Container Ends-->
</body>
</html>