-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.html
77 lines (69 loc) · 2.99 KB
/
registration.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
<!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">
<title>Registration</title>
<link rel="stylesheet" href="CSS/reset.css">
<link rel="stylesheet" href="CSS/registration.css">
</head>
<body>
<header>
<nav>
<ul>
<li><img src="./img/vaccine (1).png" alt=""><a id="title">VR</a></li>
<li id="home"><a href="./index.html">Home</a></li>
<li id="reg"><a href="./registration.html">Registration</a></li>
<li id="track"><a href="./track.html">Order Tracking</a></li>
<li id="about"><a href="./aboutus.html">About-Us</a></li>
</ul>
</nav>
<section>
<h2>Covid-19 Vaccine Registration</h2>
</section>
</header>
<main id="main" class="content">
<p>Here You Can Register</p>
<form action="registration" id="form">
<label for="name">Name</label>
<input autocomplete="off" type="text" name="name" id="name" placeholder="Insert your name" required><br>
<label for="age">Your Age</label>
<input autocomplete="off" type="number" name="age" id="age" placeholder="Insert your age" required><br>
<label for="phonenum">Phone Number</label>
<input autocomplete="off" type="number" name="phonenum" id="phonenum" placeholder="Insert your phone number " required> <br>
<label for="vaccines">Vaccine Type</label>
<select id="vaccines">
<option value="Sputnik V" selected>Sputnik V</option>
<option value="AstraZeneca">AstraZeneca</option>
<option value="mRNA-1273">mRNA-1273</option>
<option value="BNT162b2">BNT162b2</option>
</select>
<br>
<label for="alergy" class="alergy">Do you have an allergy ?</label>
<br>
<span>
<input type="radio" id="yes" name="alergy" value="yes" required checked>
<label for="yes" id="y">yes</label>
<input type="radio" id="no" name="alergy" value="no" required>
<label for="no" id="n">no</label>
</span>
<br>
<label for="date">Vaccine Appointment Date</label>
<input type="date" id="date" name="date" required><br>
<input type="submit">
</form>
</main>
<footer class="footer">
<div>
<h2>© Covid-19 Vaccine Registration</h2>
</div>
<section>
<img src="./img/email.png" alt="">
<img src="./img/facebook .png" alt="">
<img src="./img/twitter.png" alt="">
</section>
</footer>
<script src="./JS/registration.js"></script>
</body>
</html>