-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.aspx
More file actions
126 lines (117 loc) · 4.1 KB
/
Copy pathSignUp.aspx
File metadata and controls
126 lines (117 loc) · 4.1 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
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
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="SignUp.aspx.cs" Inherits="QUtopiaProject.SignUp" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>QUTOPIA</title>
<style type="text/css">
body {
background: #f6f5f7;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: 'Montserrat', sans-serif;
height: 100vh;
margin: -20px 0 50px;
background-position: center;
background-repeat: no-repeat;
background-image: url(https://images.pexels.com/photos/2387819/pexels-photo-2387819.jpeg?auto=compress&cs=tinysrgb&w=1800&h=1800&dpr=1)
/*
https://images.pexels.com/photos/9045047/pexels-photo-9045047.jpeg?auto=compress&cs=tinysrgb&w=1800&h=1800&dpr=1)*/
}
.auto-style3 {
color: white;
}
.signupbtn {
background-color: black;
color: white;
padding: 10px 15px;
margin: 8px 0;
border: none;
cursor: pointer;
width: 35%;
}
.frmalg {
margin: auto;
width: 40%;
/*background-color:lightgrey;*/
}
.auto-style4 {
width: 155px;
color: white;
}
.auto-style5 {
width: 155px;
color: white;
}
</style>
</head>
<body>
<form id="form1" runat="server" class="auto-style10">
<div>
<center>
<h3 class="auto-style3">QUTOPIA PROJECT</h3>
</center>
<table style="width:100%;">
<tr>
<td class="auto-style4">First Name :</td>
<td>
<asp:TextBox ID="FirstNameTextBox" runat="server" required="true"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style4">Middle Name:</td>
<td>
<asp:TextBox ID="MiddleNameTextBox" runat="server"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style4">Last Name :</td>
<td>
<asp:TextBox ID="LastNameTextBox" runat="server" required="true"></asp:TextBox>
</td>
<td> </td>
</tr>
</table>
<table class="auto-style9">
<tr>
<td class="auto-style4">Mobile :</td>
<td class="auto-style8">
<asp:TextBox ID="MobileTextBox" runat="server" TextMode="Phone" required="true"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style4">E-Mail :</td>
<td class="auto-style8">
<asp:TextBox ID="EMailTextBox" runat="server" TextMode="Email" required="true"></asp:TextBox>
</td>
<td> </td>
</tr>
<tr>
<td class="auto-style4">Password :</td>
<td class="auto-style8">
<asp:TextBox ID="PasswordTextBox1" runat="server" TextMode="Password" required="true"></asp:TextBox>
</td>
<td> </td>
</tr>
</table>
<table style="width:100%;">
<tr>
<td class="auto-style5">Confirm Password :</td>
<td>
<asp:TextBox ID="PasswordTextBox2" runat="server" TextMode="Password" required="true"></asp:TextBox>
*</td>
</tr>
</table>
<br />
<asp:Button ID="SignUpButton" runat="server" class="signupbtn" OnClick="SignUpButton_Click" Text="Sign Up" Width="332px" />
<br />
<asp:Label ID="Label1" runat="server" Text=" "></asp:Label>
<br />
</div>
</form>
</body>
</html>