forked from AuthorizeNet/sdk-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCoffee.aspx
37 lines (36 loc) · 1.15 KB
/
Coffee.aspx
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
<%@ Page Title="" Language="C#" MasterPageFile="~/Site.Master" AutoEventWireup="true" CodeBehind="Coffee.aspx.cs" Inherits="CoffeeShopWebApp.Coffee" %>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
<fieldset class="centered">
<div>
<label class="orange">
<img src="/content/images/mug_small.png">
S
</label>
<input type="radio" name="id" value="small" checked="true">
<br>
$1.99
</div>
<div>
<label class="orange">
<img src="/content/images/mug_medium.png">
M
</label>
<input type="radio" name="id" value="medium">
<br>
$2.99
</div>
<div>
<label class="orange">
<img src="/content/images/mug_large.png">
L
</label>
<input type="radio" name="id" value="large">
<br>
$3.99
</div>
</fieldset>
<div>
<asp:Button ID="Button1" runat="server" CssClass="submit"
onclick="Button1_Click" Text="Continue" />
</div>
</asp:Content>