forked from mrsabba/sabba0
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
83 lines (77 loc) · 3.14 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
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FriendHub Registration form | SABBA</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="title">Registration</div>
<div class="content">
<!-- Registration form -->
<form action="https://api.web3forms.com/submit" method="POST">
<!-- Replace with your Access Key -->
<input type="hidden" name="access_key" value="05cbac83-ddbd-49fb-8ccd-0cf36c929611">
<div class="user-details">
<!-- Input for Full Name -->
<div class="input-box">
<span class="details">Full Name</span>
<input type="text" name="Full Name" placeholder="Enter your name" required>
</div>
<!-- Input for Email -->
<div class="input-box">
<span class="details">Email</span>
<input type="email" name="Email" placeholder="Enter your email" required>
</div>
<!-- Input for Phone Number -->
<div class="input-box">
<span class="details">Phone Number</span>
<input type="text" name="Phone Number" placeholder="Enter your number" required>
</div>
</div>
<!-- Gender Selection -->
<div class="gender-details">
<span class="gender-title">Gender</span>
<input type="radio" name="Gender" value="Male" id="dot-1">
<input type="radio" name="Gender" value="Female" id="dot-2">
<input type="radio" name="Gender" value="Prefer not to say" id="dot-3">
<div class="category">
<label for="dot-1">
<span class="dot one"></span>
<span class="gender">Male</span>
</label>
<label for="dot-2">
<span class="dot two"></span>
<span class="gender">Female</span>
</label>
<label for="dot-3">
<span class="dot three"></span>
<span class="gender">Prefer not to say</span>
</label>
</div>
</div>
<!-- College Selection -->
<div>
<label for="college">Choose your college:</label>
<select name="College">
<option value="" disabled selected>Select any one option</option>
<option value="RADHA GOVIND UNIVERSITY (RGU)">RADHA GOVIND UNIVERSITY (RGU)</option>
<option value="SARALA BIRLA UNIVERSITY (SBU)">SARALA BIRLA UNIVERSITY (SBU)</option>
<option value="USHA MARTIN UNIVERSITY">USHA MARTIN UNIVERSITY</option>
<option value="YBN UNIVERSITY">YBN UNIVERSITY</option>
<option value="AISECT UNIVERSITY">AISECT UNIVERSITY</option>
<option value="SAI NATH UNIVERSITY">SAI NATH UNIVERSITY</option>
<option value="Others">Others</option>
</select>
</div>
<!-- Submit Button -->
<div class="button">
<input type="submit" value="Submit">
</div>
</form>
</div>
</div>
</body>
</html>