-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
81 lines (77 loc) · 2.89 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Diagnostic</title>
<!-- Favicons -->
<link href="./assets/img/favicon.png" rel="icon">
<link href="./assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
<style>
.showcase {
width: 100%;
height: 100vh;
position: relative;
color: white;
}
.showcase img {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 1;
}
.showcase .overlay {
width: 100%;
height: 100vh;
background-color: rgba(49, 49, 49, 0.7);
position: absolute;
top: 0;
left: 0;
z-index: 2;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.btn-primary {
--bs-btn-color: #2da502;
--bs-btn-bg: #e8e5ff;
--bs-btn-border-color: #e8e5ff;
--bs-btn-hover-color: #fff;
--bs-btn-hover-bg: #2da502;
--bs-btn-hover-border-color: #e8e5ff;
--bs-btn-focus-shadow-rgb: 49,132,253;
--bs-btn-active-color: #fff;
--bs-btn-active-bg: #e8e5ff;
--bs-btn-active-border-color: #e8e5ff;
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
--bs-btn-disabled-color: #fff;
--bs-btn-disabled-bg: #e8e5ff;
--bs-btn-disabled-border-color: #e8e5ff;
font-weight: bold;
}
</style>
</head>
<body>
<!-- <body style="background: url('./assets/img/diagnostic1.jpg'), radial-gradient( rgba(18, 205, 83, 0.85) 0%, rgba(10, 209, 33, 0.19) 75%, rgba(216, 82, 10, 0) 100%); background-position: center; background-repeat: no-repeat; background-size: cover;"> -->
<!-- <div class="container">
<div class="row">
<div class="col-12 vh-100 d-flex align-items-center justify-content-center">
<a href="./admin.html" class="btn btn-outline-primary mx-2">Admin Dashboard</a>
<a href="./manager.html" class="btn btn-outline-primary mx-2">Manger Dashboard</a>
</div>
</div>
</div> -->
<section class="showcase">
<img src="./assets/img/diagnostic1.jpg" alt="Picture">
<div class="overlay">
<a href="./adminLogin.html" class="btn btn-primary">Admin Dashboard</a> <br>
<a href="./managerLogin.html" class="btn btn-primary">Manger Dashboard</a>
</div>
</section>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
</body>
</html>