-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (61 loc) · 2.59 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
<!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>Masai Vaccination</title>
<link rel="stylesheet" href="./registeration/registeration.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/sweetalert/2.1.2/sweetalert.min.js" integrity="sha512-AA1Bzp5Q0K1KanKKmvN/4d3IRKVlv9PYgwFPvm32nPO6QS8yH1HO7LbgB1pgiOxPtfeg5zEn2ba64MUcqJx6CA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</script>
</head>
<body>
<nav id="navbar">
<div class="logo">
<a href="./index.html">
Masai Vaccination center
</a>
</div>
<div class="link">
<li><a href="./vaccinated/vaccinated.html">Vaccinated</a></li>
<li><a href="./dashboard/dashboard.html">Dashboard</a></li>
<li><a href="./index.html">Register</a></li>
</div>
</nav>
<div class="container">
<h1>Registeration Page</h1>
<p>Please Enter Your Details</p>
<form action="">
<span>Name</span><input type="text" id="name" placeholder="Enter the name">
<p id="alert">I am working</p>
<span>Age</span><input type="number" id="age" placeholder="Enter the age">
<span>Designation</span>
<Select id="designation">
<option value="">Choose the designation</option>
<option value="Employee">Employee</option>
<option value="Student">Student</option>
</Select>
<span>Priority</span>
<div class="radio-btn">
<label for="p1">p1</label>
<input type="radio" name="Priority" value="p1">
<label for="p2">p2</label>
<input type="radio" name="Priority" value="p2">
<label for="p3">p3</label>
<input type="radio" name="Priority" value="p3">
<label for="p4">p4</label>
<input type="radio" name="Priority" value="p3">
</div>
<span>Vaccine</span>
<select id="vaccine">
<option value="">Select the vaccine</option>
<option value="Covishield">Covishield</option>
<option value="Covaxin">Covaxin</option>
<option value="Sputnik">Sputnik</option>
</select>
<input type="submit" id="register" value="Register">
</form>
</div>
</body>
</html>
<script src="./registeration/registeration.js"></script>