-
Notifications
You must be signed in to change notification settings - Fork 3
/
checkout.cshtml
42 lines (34 loc) · 1.11 KB
/
checkout.cshtml
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
@using FreyaMusicStore
@{
Layout = "layout";
}
@section Main
{
<form method="POST" action="@Uris.checkout">
<h2>Address And Payment</h2>
<fieldset>
<legend>Shipping Information</legend>
<div class="editor-label">Address</div>
<div class="editor-field">
<input type="text" name="Address" />
</div>
<div class="editor-label">Phone</div>
<div class="editor-field">
<input type="text" name="Phone" />
</div>
<div class="editor-label">Street</div>
<div class="editor-field">
<input type="text" name="Street" />
</div>
</fieldset>
<fieldset>
<legend>Payment</legend>
<p>We're running a promotion: all music is free with the promo code: "FREE"</p>
<div class="editor-label">Promo Code</div>
<div class="editor-field">
<input type="text" name="PromoCode" />
</div>
</fieldset>
<input type="submit" value="Submit Order" />
</form>
}