-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathreg_ask.html
More file actions
110 lines (99 loc) · 2.28 KB
/
reg_ask.html
File metadata and controls
110 lines (99 loc) · 2.28 KB
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!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 href="https://unpkg.com/boxicons@2.1.4/css/boxicons.min.css" rel="stylesheet" />
<link rel="stylesheet" href="templates/style.css" />
<title>Register</title>
</head>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
:root {
--primary-blue: #2c77ad;
--dark-grey: #b9b9b9;
--light-grey: #f5f5f5;
--green: #26b876;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: var(--light-grey);
text-align: center;
padding: 5rem;
}
.reg-cards {
margin: 3rem;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-top: 5rem;
}
.reg-card {
border: var(--dark-grey) 2px solid;
width: 20rem;
height: 20rem;
background: white;
border-radius: 1rem;
margin: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
cursor: pointer;
transition: all 0.3s ease;
}
.reg-card h2 {
font-size: 1.5rem;
margin-top: 1rem;
color: var(--primary-blue);
font-weight: 300;
}
.reg-card i {
font-size: 5rem;
color: var(--primary-blue);
animation: none;
}
.reg-card:hover {
transform: translateY(-5px);
box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.reg-card:hover i {
animation: tada 1s infinite;
}
</style>
<body class="reg-ask">
<h1>Register as</h1>
<div class="reg-cards">
<a href="regular.php">
<div class="reg-card">
<i class="icon bx bxs-user-circle bx-tada"></i>
<h2>Regular User</h2>
</div>
</a>
<a href="hospital_reg.php">
<div class="reg-card">
<i class="icon bx bxs-buildings bx-tada"></i>
<h2>Hospital</h2>
</div>
</a>
<a href="pharmacy_reg.php">
<div class="reg-card">
<i class="icon bx bx-capsule bx-tada"></i>
<h2>Pharmacy</h2>
</div>
</a>
<a href="diagnostic.php">
<div class="reg-card">
<i class="icon bx bx-plus-medical bx-tada"></i>
<h2>Diagnostic Center</h2>
</div>
</a>
</div>
</body>
</html>