-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathproject2.html
32 lines (31 loc) · 1001 Bytes
/
project2.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
<!doctype html>
<head>
<title>
Sign In
</title>
<script src="script.js"></script>
</head>
<body>
<br><br><br><br><br><br>
<form action="message.html" method="post" onSubmit="return Do();">
<fieldset>
<legend><h1>Sign up</h1></legend>
Name:<input type="text" id="name"> </input><br><br>
Date of Birth:<input type="date" id="dob"></input><br><br>
Email address:<input type="text" id="email"> </input><br><br>
Government Verifivation card(Aadhar or Water ID):<input type="image" id="gov"></input><br><br>
Scheduled date of workout(Try to make sure its final as another person will be informed of it and will schedule accordingly):<input type="date" id="wor"></input><br><br>
Scheduled starting time of workout:<input type="time" id="time"></input><br><br>
Phone number:<input type="number" id="ph"></input><br><br>
<input type ="submit" value="Submit" name=""></input>
</fieldset>
</form>
</body>
<style>
head,body{
background-image:url('image.jpg');
font-weight:bolder;
color:white;
}
</style>
</html>