-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault.aspx
37 lines (35 loc) · 1.52 KB
/
Default.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 Language="VB" AutoEventWireup="false" CodeFile="Default.aspx.vb" Inherits="QuizLogin" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>QuizLogin</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h1>Log into Account</h1>
<br /> <br />
<span >Email: </span>
<asp:TextBox ID="txtboxEmail" runat="server" TextMode="Email"></asp:TextBox>
<br /> <br />
<span >Password</span>
<asp:TextBox ID="txtboxPassword" runat="server" TextMode="Password"></asp:TextBox>
<br /> <br />
<span>Confirm Role:</span>
     
<asp:RadioButton ID="radiobtnAdmin" Text="Admin" GroupName="UserRole" runat="server" Checked="True" />
     
<asp:RadioButton ID="radiobtnExaminer" Text="Examiner" GroupName="UserRole" runat="server" />
     
<asp:RadioButton ID="radiobtnStudent" Text="Student" GroupName="UserRole" runat="server" />
<br /> <br />
<asp:Button ID="btnlogin" runat="server" Text="Login"/>
   
<asp:Button ID="btnClear" runat="server" Text="Clear"/>
<br /> <br />
<asp:Label ID="lbl_showErrorMessages" runat="server"></asp:Label>
<br />Don't Have Account <a href="QuizSignUp.aspx"> SignUp</a>
</div>
</form>
</body>
</html>