This repository has been archived by the owner on Nov 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangePassword.html
68 lines (58 loc) · 2.25 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
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>ILLiad - Change Password</title>
<#INCLUDE filename="include_head.html">
</head>
<body>
<#INCLUDE filename="include_header.html">
<#INCLUDE filename="include_nav.html">
<div class="container">
<main id="content" aria-label="Content">
<form action="illiad.dll" method="post" name="ChangePassword">
<input type="hidden" name="ILLiadForm" value="ChangePassword">
<#FORMSTATE>
<fieldset>
<h2 class="page-header">Change Password</h2>
<div id="status"><#STATUS></div>
<section name="password-info">
<div class="form-group col-md-5">
<label for="CurrentPassword">
<span class="<#ERROR name='ERRORCurrentPassword'>">
Current Password
<span class="req">(required)</span>
</span>
</label>
<input type="password" class="form-control" name="CurrentPassword" id="CurrentPassword" aria-describedby="passwordHelp" autocomplete="off" required>
</div>
<div class="form-group col-md-5">
<label for="Password1">
<span class="<#ERROR name='ERRORPassword1'>">
New Password
<span class="req">(required)</span>
</span>
</label>
<input type="password" class="form-control" name="Password1" id="Password1" autocomplete="off" required>
<div class="small-notes">
Passwords must be at least eight characters long and contain a lowercase letter, an uppercase letter, and a number.
</div>
</div>
<div class="form-group col-md-5">
<label for="Password2">
<span class="<#ERROR name='ERRORPassword2'>">
Re-enter New Password
<span class="req">(required)</span>
</span>
</label>
<input type="password" class="form-control" name="Password2" id="Password2" autocomplete="off" required>
</div>
</section>
</fieldset>
<button class="btn btn-primary btn-md" type="submit" name="SubmitButton" value="Submit Information">Submit Information</button>
<button class="btn btn-secondary btn-md" type="submit" name="SubmitButton2" value="Cancel - Exit to Main Menu">Cancel - Exit to Main Menu</button>
</form>
</main>
<#INCLUDE filename="include_footer.html">
</div>
</body>
</html>