-
Notifications
You must be signed in to change notification settings - Fork 3
/
form.html
82 lines (81 loc) · 3.69 KB
/
form.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="Favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="Favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="Favicon/favicon-16x16.png">
<link rel="manifest" href="Favicon/site.webmanifest">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
<title>RKG | Login/SignUp</title>
<link rel="stylesheet" href="Style/formstyle.css">
</head>
<body>
<header>
<div class="banner"></div>
</header>
<nav>
<a href="index.html">Home</a>
<a href="videos.html">Videos</a>
<a href="tutors.html">Tutors</a>
<a href="testyourself.html">Test Yourself</a>
<a href="contact.html">Contact Us</a>
<a href="login.html" class="flex-align-right">Login/SignUp</a>
</nav>
<body>
<div class="container">
<form action="">
<h1 class="main_heading"><span>Registration Form</span></h1>
<hr>
<p>Name:* <input type="text", name="Name" required></p>
<fieldset>
<legend>Gender</legend>
<p>
Gender:
Male <input type="radio" name="Gender" id="male">
Female <input type="radio" name="Gender" id="female">
</p>
</fieldset>
<p>Contact No.:* <input type="number" name="contact" id="contact" required></p>
<p>Email: <input type="email" name="Email" id="email"></p>
<p>Class:*
<select name="Class" id="Class" required>
<option value="">-----Select Your Class-----</option>
<option value="class1">Class 1</option>
<option value="class2">Class 2</option>
<option value="class3">Class 3</option>
<option value="class4">Class 4</option>
<option value="class5">Class 5</option>
<option value="class6">Class 6</option>
<option value="class7">Class 7</option>
<option value="class8">Class 8</option>
<option value="class9">Class 9</option>
<option value="class10">Class 10</option>
<option value="class11">Class 11</option>
<option value="class12">Class 12</option>
</select>
</p>
<p>Date of Birth: <input type="date" name="dob" id="dob"></p>
<p> Address: <textarea name="Address" id="address" cols="30" rows="10"></textarea></p>
<p>Pincode:* <input type="number" name="Pincode" id="pincode" required></p>
<p>Create a Password:* <input type="password" name="password" id="password" required></p>
<p>Confirm your Password:* <input type="password" name="confirm_password" id="confirm_password" required></p>
<input type="submit" value="Register">
<hr>
</form>
</div>
</body>
<footer>
<a href="#">FAQ</a>
<a href="contact.html">Contact Us</a>
<a href="#">Terms of Use</a>
<a href="#">Privacy Policy</a>
<a href="#">Refund Policy</a>
<a href="#" class="flex-align-left">© 2020 | RKG Learning System </a>
<span class="Team_Credit">Created in ♥ with Govind, Kashish and Rajarshi</span>
</footer>
</body>
</html>