-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDashboard.html
84 lines (82 loc) · 2.88 KB
/
Dashboard.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
84
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="Style.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"
integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A=="
crossorigin="anonymous"
referrerpolicy="no-referrer" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet" />
<title>Dashboard</title>
</head>
<body>
<div class="container" id="container">
<div class="register">
<form id="register-form">
<h1>Register Here!!</h1>
<input type="text" id="register-name" placeholder="Name" required />
<input
type="email"
id="register-email"
placeholder="Email"
required />
<input
type="number"
id="register-phone"
placeholder="Phone Number"
required />
<input
type="text"
id="register-bloodgroup"
placeholder="BloodGroup"
required />
<input type="number" id="register-age" placeholder="Age" required />
<input
type="text"
id="register-address"
placeholder="Address"
required />
<button type="submit">Register</button>
</form>
</div>
<div class="search">
<form id="search-form">
<h1></h1>
<input
type="text"
id="search-bloodgroup"
placeholder="BloodGroup"
required />
<input type="number" id="search-age" placeholder="Age" required />
<button type="submit">Search</button>
</form>
</div>
<div class="toogle-container">
<div class="toogle">
<div class="toogle-panel toogle-left">
<h1>Welcome Donor!</h1>
<p>Donate Blood</p>
<p>Be a life-saver today</p>
<img src="register.png" alt="Blood-Donation" class="panel-image" />
<button class="hidden" id="login">search</button>
</div>
<div class="toogle-panel toogle-right">
<h1>Hello, User!</h1>
<p>Search Donor</p>
<img src="search.png" alt="Blood-Donation" class="panel-image" />
<button class="hidden" id="register">register</button>
</div>
</div>
</div>
</div>
<script src="Dash.js"></script>
</body>
</html>