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
/
NewPassword.html
58 lines (46 loc) · 1.69 KB
/
NewPassword.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>ILLiad - New Password</title>
<#INCLUDE filename="include_head.html">
</head>
<body>
<#INCLUDE filename="include_header.html">
<div id="status" class="container">
<#STATUS>
</div>
<div class="container">
<main id="content" aria-label="Content">
<form action="illiad.dll" method="post" name="NewPassword">
<input name="ILLiadForm" type="hidden" value="NewPassword">
<input name="ResetID" type="hidden" value="<#PARAM name='ResetID'>">
<h2 class="page-header">Reset Password</h2>
<section name="pass-info">
<div class="form-group col-md-4">
<label for="Password1">
<span class="<#ERROR name='ERRORPassword1'>">
New Password
</span>
</label>
<input type="password" class="form-control" name="Password1" id="Password1" autocomplete="off">
<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-4">
<label for="Password2">
<span class="<#ERROR name='ERRORPassword2'>">
Re-enter New Password
</span>
</label>
<input type="password" class="form-control" name="Password2" id="Password2" autocomplete="off">
</div>
</section>
<button class="btn btn-primary btn-md" type="submit" name="SubmitButton" value="Set Password">Set Password</button>
<button class="btn btn-secondary btn-md" type="submit" name="SubmitButton" value="Cancel - Exit ILLiad System">Cancel - Exit ILLiad System</button>
</form>
</main>
<#INCLUDE filename="include_footer.html">
</div>
</body>
</html>