-
Notifications
You must be signed in to change notification settings - Fork 0
/
welcome-screen.php
134 lines (121 loc) · 3.39 KB
/
welcome-screen.php
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<title>LifeSprint Care Solutions</title>
<link rel="icon" href="images/icon.png" type="image/x-icon" />
<!-- Link Bootstrap CSS -->
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
/>
<!-- Custom CSS -->
<style>
body {
background-image: url("images/newbg.png");
background-size: cover;
background-attachment: fixed;
background-color: #f8f9fa;
margin: 0;
padding: 0;
}
/* Style for the center-fixed modal */
.modal-center {
display: flex;
align-items: center;
justify-content: center;
height: 100vh; /* 100% viewport height */
}
/* Make the modal fixed */
.modal {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.modal-footer {
background-color: white;
border: none;
}
.modal-dialog {
margin: auto;
max-width: 700px;
}
.btn {
font-size: 27px;
padding: 10px 20px;
}
.logohome {
width: 150px;
}
.modal-header {
background-color: #fff;
border-bottom: 1px solid #fff;
}
.btn {
background-color: #5b155e;
color: #fff; /* Set text color */
}
.btn:hover {
background-color: #4d6356;
border-color: #4d6356;
}
</style>
</head>
<body>
<div id="particles-js">
</div>
<!-- Fixed Modal -->
<div
class="modal fade"
id="fixedModal"
data-backdrop="static"
data-keyboard="false"
tabindex="-1"
role="dialog"
aria-labelledby="fixedModalLabel"
aria-hidden="true"
>
<div class="modal-dialog modal-dialog-centered modal-center">
<div class="modal-content">
<div class="modal-header">
<img src="assets/images/logo.png" class="logohome" />
</div>
<div class="modal-body">
<!-- Modal content goes here -->
<center>
<a href="welcome">
<button type="staff-solution" class="btn btn-secondary">
Staffing Solutions
</button></a
>
<a href="./cloud-solution.php">
<button type="button" class="btn btn-secondary">
IT Cloud Solutions
</button></a
>
</center>
</div>
<div class="modal-footer">
<!-- <img src="assets/images/logo.png" class="logohome" /> -->
</div>
</div>
</div>
</div>
<script src="assets/particles.js-master/particles.js"></script>
<script src="assets/particles.js-master/demo/js/app.js"></script>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
<!-- Trigger the modal -->
<script>
$(document).ready(function () {
$("#fixedModal").modal("show");
});
</script>
</body>
</html>