-
Notifications
You must be signed in to change notification settings - Fork 0
/
confirmEmail.aspx
33 lines (29 loc) · 1021 Bytes
/
confirmEmail.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
<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="confirmEmail.aspx.cs" Inherits="confirmEmail" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<table>
<tr>
<td>
Enter PIN received in your email:
</td>
<td>
<asp:TextBox ID="TextBoxPin" runat="server"></asp:TextBox>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Label ID="Label1" runat="server" ForeColor="#CC0000"></asp:Label>
</td>
</tr>
<tr>
<td>
</td>
<td>
<asp:Button ID="ButtonPinConfirm" runat="server" Text="Confirm" OnClick="ButtonPinConfirm_Click" />
</td>
</tr>
</table>
</asp:Content>