-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsignup.html
More file actions
59 lines (56 loc) · 1.13 KB
/
signup.html
File metadata and controls
59 lines (56 loc) · 1.13 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
<!DOCTYPE html>
<html>
<head>
<title>Signup</title>
<script type="text/javascript" src="signup.js"></script>
<style type="text/css">
body
{
all:initial;
background:linear-gradient(45deg ,blue , black) ;
}
h4
{
font-size: 14;
text-shadow: 0 0 2px pink;
}
form
{
border-color: red;
border: 3;
border-width: 2;
border-style: double;
width:unset;
border-height: 153px;
padding: 12%
}
div
{
background:linear-gradient(45deg,yellow , green) ;
margin-left: 5%;
margin-top: 12%;
width:76%;
height: 453px;
}
</style>
</head>
<body>
<div>
<center>
<form name="signup" onSubmit="return validates();" >
<center><h4> Sign Up </h4></center>
<center>UserId<t> <input type="text" id="userid"></center>
<br>
<center>Password<t> <input type="password" id="pass" ></center>
<br>
<center>Email Id<t><input type="text" id="emailid"></center>
<br>
<center>Mobile No<t><input type="text" id="phn"></center>
<br>
<center><input type="submit" id="signup" value="SignUp ! " ></center>
<br>
</form>
</center>
</div>
</body>
</html>