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
/
EditAccountInformation.html
97 lines (84 loc) · 3 KB
/
EditAccountInformation.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>ILLiad - Edit Account Information</title>
<#INCLUDE filename="include_head.html">
</head>
<body>
<#INCLUDE filename="include_header.html">
<#INCLUDE filename="include_menu.html">
<div class="container">
<main id="content" aria-label="Content">
<div class="default-table">
<h2 class="page-header">Current Accounts</h2>
<#TABLE name="ShowCurrentAccounts" noDataAction="ShowMessageRow" noDataMessage="No Accounts"><br>
</div>
<form action="illiad.dll" method="post" name="EditAccountForm">
<input type="hidden" name="ILLiadForm" value="EditAccountForm">
<#FORMSTATE>
<div class="mainContent">
<fieldset>
<h2 class="page-header">Add Account</h2>
<section name="article-info">
<div class="form-group col-md-9">
<label for="AccountNo">
<span class="field">
<span class="<#ERROR name='ERRORAccountNo'>">
Account Number
</span>
</span>
</label>
<input id="AccountNo" name="AccountNo" type="text" size="40" class="form-control" value="<#PARAM name='AccountNo'>"><br>
</div>
<div class="form-group col-md-9">
<label for="Type">
<span class="field">
<span class="<#ERROR name='ERRORType'>">
Account Type
</span>
</span>
</label>
<input id="Type" name="Type" type="text" size="40" class=" form-control" value="<#PARAM name='Type'>"><br>
</div>
<div class="form-group col-md-9">
<label for="Description">
<span class="field">
<span class="<#ERROR name='ERRORDescription'>">
Description
</span>
</span>
</label>
<input id="Description" name="Description" type="text" size="40" class="form-control" value="<#PARAM name='Description'>"><br>
</div>
<div class="form-group col-md-9">
<label for="CCExpirationDate">
<span class="field">
<span class="<#ERROR name='ERRORCCExpirationDate'>">
Expiration Date
</span>
</span>
</label>
<input id="CCExpirationDate" name="CCExpirationDate" type="text" size="40" class="form-control" value="<#PARAM name='CCExpirationDate'>"><br>
</div>
<div class="form-group col-md-9">
<label for="CCNameonCard">
<span class="field">
<span class="<#ERROR name='ERRORCCNameonCard'>">
Name on Card
</span>
</span>
</label>
<input id="CCNameonCard" name="CCNameonCard" type="text" size="40" class="form-control" value="<#PARAM name='CCNameonCard'>"><br>
</div>
</section>
<div class="right">
<input class="btn btn-primary btn-md" type="submit" name="SubmitButton" value="Add Account">
</div>
</fieldset>
</div>
</form>
</main>
<#INCLUDE filename="include_footer.html">
</div>
</body>
</html>