-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcustedit-wbroker.html
46 lines (37 loc) · 1.84 KB
/
custedit-wbroker.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
<#header>
<h1>Edit Customer Information</h1>
<form id="customerForm">
<div class="form-group">
<label for="company">Company:</label>
<input type="text" id="company" name="company" value="<#Company>" required>
</div>
<div class="form-group">
<label for="firstName">Name:</label>
<div class="input-group">
<input type="text" id="firstName" name="firstName" value="<#FirstName>" placeholder="First Name" required>
<input type="text" id="lastName" name="lastName" value="<#LastName>" placeholder="Last Name" required>
</div>
</div>
<div class="form-group">
<label for="Address">Address:</label>
<input type="text" id="Address" name="Address" value="<#Address>" placeholder="Address" required>
</div>
<div class="form-group">
<label for="city">Location:</label>
<div class="input-group">
<input type="text" id="city" name="city" value="<#City>" placeholder="City" required>
<input type="text" id="state" name="state" value="<#State>" placeholder="State" required>
<input type="text" id="zip" name="zip" value="<#Zip>" placeholder="Zip" required>
</div>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" value="<#Email>" required>
</div>
<div class="form-group">
<label for="Phone">Phone:</label>
<input type="tel" id="Phone" name="Phone" value="<#Phone>">
</div>
<button type="submit">Submit</button>
</form>
<#footer>