-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEmailVerification.aspx
More file actions
26 lines (26 loc) · 1.26 KB
/
EmailVerification.aspx
File metadata and controls
26 lines (26 loc) · 1.26 KB
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
<%@ Page Title="" Language="C#" MasterPageFile="~/Site2.Master" AutoEventWireup="true" CodeBehind="EmailVerification.aspx.cs" Inherits="teachingPlatform.EmailVerification" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
<link href="App_Themes/Login/forgotPW.css" rel="stylesheet" />
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div style="vertical-align: middle; text-align: center"><h3>Verification link has been sent to your registered email address</h3></div>
<div class="reset-body">
<div class="card login-form">
<div class="card-body">
<h3 class="card-title text-center"> </h3>
<div class="card-text">
<div class="reset-form">
<div class="form-group">
Enter OTP sent in the mail:<br /><br />
<asp:TextBox ID="TextBox1" runat="server" TextMode="Number" placeholder="Enter OTP" CssClass="form-control form-control-sm"></asp:TextBox>
</div>
<asp:Button ID="SendEmailButton" runat="server" OnClick="SubmitClick" Text="Submit" CssClass="btn btn-primary btn-block"/>
<br />
<asp:Label ID="Label2" runat="server" Text=""></asp:Label>
</div>
</div>
</div>
</div>
</div>
</div>
</asp:Content>