-
Notifications
You must be signed in to change notification settings - Fork 2
/
SignUp.aspx
26 lines (24 loc) · 1.34 KB
/
SignUp.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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="SignUp.aspx.cs" Inherits="marco.SignUp" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<p>
Create an account as...</p>
<p>
<asp:Button ID="Lecturer" runat="server" OnClick="Lecturer_Click" Text="Lecturer" />
<asp:Button ID="Student" runat="server" Text="Student" OnClick="Student_Click" />
<asp:Button ID="Company" runat="server" Text="Company" OnClick="Company_Click" />
<asp:Button ID="ExternalExaminer" runat="server" Text="External Examiner" OnClick="ExternalExaminer_Click" />
<asp:Button ID="TA" runat="server" Text="TA" OnClick="TA_Click" Width="92px" />
</p>
</form>
</body>
</html>