-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheckoutConfirm.aspx
143 lines (133 loc) · 6.28 KB
/
CheckoutConfirm.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<%@ Page Title="" Language="C#" MasterPageFile="~/Lyra.master" AutoEventWireup="true" CodeBehind="CheckoutConfirm.aspx.cs" Inherits="LyraAspnetSimple.CheckoutConfirm" %>
<%@ PreviousPageType VirtualPath="~/Checkout.aspx" %>
<%--
//
// Copyright © Lyra Network.
// This file is part of Lyra ASP.NET payment form example. See COPYING.md for license details.
//
// @author Lyra Network <https://www.lyra.com>
// @copyright Lyra Network
// @license http://www.gnu.org/licenses/gpl.html GNU General Public License (GPL v3)
//
--%>
<asp:Content ContentPlaceHolderID="Head" runat="server"></asp:Content>
<asp:Content ContentPlaceHolderID="Content" runat="server">
<form id="CheckoutConfirmForm" runat="server">
<div class="column">
<h2><asp:Localize runat="server" Text="<%$ Resources:WebResources, BuyerData %>" /></h2>
<table>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, Civility %>" AssociatedControlID="Civility" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="Civility" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, FirstName %>" AssociatedControlId="FirstName" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="FirstName" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, LastName %>" AssociatedControlId="LastName" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="LastName" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, Address %>" AssociatedControlId="Address" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="Address" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, ZipCode %>" AssociatedControlId="ZipCode" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="ZipCode" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, City %>" AssociatedControlId="City" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="City" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, Country %>" AssociatedControlId="Country" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="Country" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, Phone %>" AssociatedControlId="Phone" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="Phone" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, Email %>" AssociatedControlId="Email" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="Email" runat="server"></asp:Label>
</td>
</tr>
</table>
</div>
<div class="column">
<h2><asp:Localize runat="server" Text="<%$ Resources:WebResources, OrderData %>" /></h2>
<table>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, OrderNumber %>" AssociatedControlId="OrderNumber" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="OrderNumber" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td class="label">
<asp:Label Text="<%$ Resources:WebResources, Amount %>" AssociatedControlId="Amount" runat="server"></asp:Label>
</td>
<td>
<asp:Label ID="Amount" runat="server"></asp:Label> €
</td>
</tr>
</table>
<table>
<tr>
<td>
<img class="card-logo" alt="Visa"src="images/visa.png" />
<img class="card-logo" alt="CB" src="images/cb.png" />
<img class="card-logo" alt="MasterCard" src="images/mastercard.png" />
<img class="card-logo" alt="E-CarteBleue" src="images/e-cartebleue.png" />
</td>
<td>
<asp:Button ID="PayButton" onclick="PayButton_Click" Text="<%$ Resources:WebResources, Payment %>" runat="server" />
</td>
</tr>
</table>
<asp:Localize runat="server" Text="<%$ Resources:WebResources, ConfirmDescription1 %>" /><br />
<asp:Localize runat="server" Text="<%$ Resources:WebResources, ConfirmDescription2 %>" /><br />
<asp:Localize runat="server" Text="<%$ Resources:WebResources, ConfirmDescription3 %>" /><br />
<asp:Localize runat="server" Text="<%$ Resources:WebResources, ConfirmDescription4 %>" />
<asp:Label ID="lblOutput" runat="server"></asp:Label>
</div>
</form>
</asp:Content>