-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
72 lines (68 loc) · 2.96 KB
/
index.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
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<meta charset="UTF-8">
<head>
<title>Sign Up Form</title>
<link rel="stylesheet" type="text/css" href="form.css">
<meta content="width=device-width, initial-scale=1" name="viewport" />
<link rel="shortcut icon" type="image/x-icon" href="favicon.png" />
</head>
<body>
<div class="container">
<center><h2 id="title" class="text-center">SIGNUP FORM</h2></center>
<header class="header">
<center>
<a href="https://pranjay-poddar.github.io/catalytic_originals/" id ="des" class="desc" style="font-size: 110%;">Catalytic Originals</a>
</center>
<br>
<center>
<img src="./logo/cato.png" alt="an image" height ="100px" weight="100px">
</center>
</header>
<form id="survey-form" name="form1">
<br>
<div class="form-group">
<label id="name-label" for="Name">Username</label>
<input type="text" name="name" id="name" class="form-control" placeholder="Enter Your Name" required>
</div>
<br>
<div class="form-group">
<label id="email-label" for="Email">Email</label>
<input type="text" name="email" id="email" class="form-control" placeholder="Enter Your Email" required>
</div>
<br>
<div class="form-group">
<label id="dob-label" for="dob">DOB</label>
<input type="date" name="dob" id="dob" class="form-control" placeholder="DOB" required>
</div>
<br>
<div class="form-group">
<p> Please select your gender</p>
<label for="male"><input type="radio" id="male" name="gender" value="male" class="input-radio" checked>Male</label>
<label for="female"><input type="radio" id="female" name="gender" value="female" class="input-radio">Female</label>
<label for="other"><input type="radio" id="other" name="gender" value="other" class="input-radio">Other</label>
</div>
<br>
<div class="form-group">
<label id="password-label" for="password">Password</label>
<input type="password" name="password1" id="password1" class="form-control" placeholder="Enter Password" required>
</div>
<br>
<div class="form-group">
<label id="password-label" for="password">Confirm Password</label>
<input type="password" name="password2" id="password2" class="form-control" placeholder="Enter Password" required>
</div>
<br>
<br>
<div class="form-group sub">
<center>
<button type="submit" id="submit" class="submit-button"
onclick="checkfun(document.form1)">Submit</button>
</center>
</div>
</div>
<br>
</body>
<script src="form.js">
</script>
</html>