-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
67 lines (67 loc) · 2.23 KB
/
signup.html
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/signup.css">
</head>
<body>
<h1>Sign-Up for Free</h1>
<div class="block">
<div class="image">
<img src="images/profile.png" width="35%">
</div>
<form action="Registration.php" method="post">
<div class="container">
<label class="label">Name</label>
<input type="text" name="Username" placeholder="full-name"></input>
</div>
<div class="container">
<label class="label">Address</label>
<input type="text" name="Address" placeholder="full-address"></input>
</div>
<div class="container">
<label class="label">Pincode</label>
<input type="text" name="Pin" placeholder="Pincode"></input>
</div>
<div class="container">
<input type="radio" name="gender">male</input><input type="radio" name="gender">female</input>
</div>
<div class="container">
<label class="label">Birth-Date</label>
<input type="date" name="bday" min="2000-01-02"></input>
</div>
<div class="container">
<label class="label">Password</label>
<input type="text" name="password" placeholder="..."></input>
</div>
<div class="container">
<button type="submit">Sign Up</button>
</div>
</div>
</form>
</div>
<div class="message" id="mess"></div>
<div class="address">
<label class="label1">Office address</label>
<div class="block1">I-143 alpha-2 Greater Noida,Uttar Pradesh,India</div>
<div class="icons">
<img class="icon" src="images/tweet.png" height="10%" width="10%"></img>
<img class="icon" src="images/fb.png" height="10%" width="10%"></img>
<img class="icon" src="images/insta.png" height="10%" width="10%"></img>
</div>
<div class="footer">© [name of rightsholder or rightsholders] [publication year]: e.g. © XYZ Press and contributors 2014</div>
</div>
<script>
var now=new Date();
var h=now.getHours();
var ob=document.getElementById("mess");
if(h>20)
ob.innerHTML="Good Night!"
else if(h>18)
ob.innerHTML="Good Evening!"
else if(h>12)
ob.innerHTML="Good Afternoon!"
else if(h<12)
ob.innerHTML="Have a good day!!"
</script>
</body>
</html>