-
Notifications
You must be signed in to change notification settings - Fork 0
/
user_signup.php
104 lines (104 loc) · 2.88 KB
/
user_signup.php
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
<!DOCTYPE html>
<html>
<head>
<title>New User SignUp</title>
</head>
<style>
div {
width: 40%;
height: 100%;
text-align: center;
position: relative;
margin-right: 30%;
margin-left: 30%;
vertical-align: middle;
font-size: 30px;
border: 4px solid #009999;
padding-top: 30px;
padding-bottom: 30px;
border-radius: 20px;
}
body {
background-color: #d9d9d9;
background-position: right top;
background-attachment: fixed;
background-size: cover;
}
button {
background-color: #009999;
border: 1px solid #a6a6a6;
border-radius: 10px;
box-shadow: 2px 2px #a6a6a6;
}
.input {
font-size: 22px;
text-align: center;
opacity: 0.5;
}
table {
width: 100%;
}
td {
text-align: center;
padding-left: 10px;
padding-right: 10px;
}
button:link, button:visited
{
text-decoration: none;
}
button:hover, button:active
{
background-color: #e6b800;
border: 1px solid #a6a6a6;
border-radius: 10px;
box-shadow: 2px 2px #a6a6a6;
font-size: 28px;
}
input:hover, input:active
{
background-color: #8c8c8c;
box-shadow: 2px 2px #a6a6a6;
}
</style>
<body>
<br><br><br><br><br><br><br><br><br><br>
<div style="background-color: #f2f2f2;">
<form action="user_signed_up.php" method="post">
<table>
<tr>
<td colspan="2"><p style="font-size: 35px; font-family: 'Times New Roman', serif; color: #009999;"><b>New User SignUp</b></p></td>
</tr>
<tr>
<td style="padding-left: 60px; text-align: left;">Name: </td>
<td><input class="input" type="text" name="name" placeholder="Enter Name" required></td>
</tr>
<tr>
<td style="padding-left: 60px; text-align: left;">Phone Number: </td>
<td><input class="input" type="number" name="phone" placeholder="Enter Number" required></td>
</tr>
<tr>
<td style="padding-left: 60px; text-align: left;">Password: </td>
<td><input class="input" type="password" name="password" placeholder="Enter Password" required></td>
</tr>
<tr>
<td style="padding-left: 60px; text-align: left;">Email ID: </td>
<td><input class="input" type="email" name="email" placeholder="Enter Email" required></td>
</tr>
<tr>
<td style="padding-left: 60px; text-align: left;">ID Proof: </td>
<td><input class="input" type="text" name="idproof" placeholder="Enter ID Proof" required></td>
</tr>
<tr>
<td style="padding-left: 60px; text-align: left;">Date of birth: </td>
<td><input class="input" type="date" name="dob" value="01-01-2000" required></td>
</tr>
<tr><td><br></td></tr>
<tr>
<td colspan="2"><input style="font-size: 28px; background-color: #009999; border: 1px solid #a6a6a6; box-shadow: 2px 2px #a6a6a6; color: white; border-radius: 10px;" type="submit" value="Submit"></td>
</tr>
</table>
</form>
</div>
</body>
</html>