-
Notifications
You must be signed in to change notification settings - Fork 5
/
Default.aspx
131 lines (126 loc) · 4.47 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
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
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<style type="text/css">
.auto-style1 {
width: 100%;
}
.auto-style2 {
width: 355px;
}
.auto-style3 {
width: 355px;
height: 24px;
}
.auto-style4 {
height: 24px;
}
.auto-style5 {
width: 338px;
}
.auto-style6 {
width: 338px;
height: 24px;
}
.auto-style7 {
width: 355px;
height: 27px;
}
.auto-style8 {
width: 338px;
height: 27px;
}
.auto-style9 {
height: 27px;
}
</style>
</head>
<body>
<form id="form1" runat="server">
<div>
<table class="auto-style1">
<tr>
<td class="auto-style2">
<asp:Image ID="Image1" runat="server" ImageUrl="~/Images/CodeItBro.png" />
</td>
<td class="auto-style5"> </td>
<td> </td>
</tr>
<tr>
<td class="auto-style2">
<asp:Label ID="Label1" runat="server" Text="First Name"></asp:Label>
</td>
<td class="auto-style5">
<asp:TextBox ID="FnameTxt" runat="server"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style3">
<asp:Label ID="Label2" runat="server" Text="Last Name"></asp:Label>
</td>
<td class="auto-style6">
<asp:TextBox ID="LnameTxt" runat="server"></asp:TextBox>
</td>
<td class="auto-style4"></td>
</tr>
<tr>
<td class="auto-style2">
<asp:Label ID="Label6" runat="server" Text="Email"></asp:Label>
</td>
<td class="auto-style5">
<asp:TextBox ID="Email" runat="server"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style7">
<asp:Label ID="Label4" runat="server" Text="Mobile Number"></asp:Label>
</td>
<td class="auto-style8">
<asp:TextBox ID="MobileNumber" runat="server"></asp:TextBox>
</td>
<td class="auto-style9"></td>
</tr>
<tr>
<td class="auto-style2">
<asp:Label ID="Label5" runat="server" Text="Password"></asp:Label>
</td>
<td class="auto-style5">
<asp:TextBox ID="Password" runat="server" TextMode="Password"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style2">
</td>
<td class="auto-style5">
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style2"> </td>
<td class="auto-style5"> </td>
<td> </td>
</tr>
<tr>
<td class="auto-style2"> </td>
<td class="auto-style5">
<asp:Button ID="Register" runat="server" Text="Register/Sign Up" OnClick="Register_Click" />
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style2"> </td>
<td class="auto-style5">
<asp:Label ID="Label7" runat="server" Text="Label" Visible="False"></asp:Label>
</td>
<td> </td>
</tr>
</table>
</div>
</form>
</body>
</html>