-
Notifications
You must be signed in to change notification settings - Fork 2
/
custedit-wStencils.html
45 lines (37 loc) · 1.99 KB
/
custedit-wStencils.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
@LayoutPage custlistframework1.html
@LoginRequired
<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="@CustList.Company" required>
</div>
<div class="form-group">
<label for="firstName">Name:</label>
<div class="input-group">
<input type="text" id="firstName" name="firstName" value="@CustDetails.FirstName" placeholder="First Name" required>
<input type="text" id="lastName" name="lastName" value="@CustDetails.LastName" placeholder="Last Name" required>
</div>
</div>
<div class="form-group">
<label for="Address">Address:</label>
<input type="text" id="Address" name="Address" value="@CustDetails.Address" required>
</div>
<div class="form-group">
<label for="city">Location:</label>
<div class="input-group">
<input type="text" id="city" name="city" value="@CustDetails.City" placeholder="City" required>
<input type="text" id="state" name="state" value="@CustDetails.State" placeholder="State" required>
<input type="text" id="zip" name="zip" value="@CustDetails.PostalCode" placeholder="Zip" required>
</div>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" value="@CustDetails.Email" placeholder="email" required>
</div>
<div class="form-group">
<label for="Phone">Phone:</label>
<input type="tel" id="Phone" name="Phone" value="@CustDetails.Phone" placeholder="(xxx) xxx-xxxx">
</div>
<button type="submit">Submit</button>
</form>