-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.php
More file actions
37 lines (34 loc) · 901 Bytes
/
settings.php
File metadata and controls
37 lines (34 loc) · 901 Bytes
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
<?php $activePage = 'settings'; ?>
<!DOCTYPE html>
<html>
<head>
<title>Payment Page</title>
<style>
.loader {
border: 16px solid lightgray;
border-radius: 50%;
border-top: 16px solid black;
width: 120px;
height: 120px;
animation: spin 2s linear infinite;
margin: 100px auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.text {
text-align: center;
margin-top: 20px;
font-weight: bold;
font-size: 20px;
}
</style>
</head>
<body>
<?php include_once("navbar.php"); ?>
<br><br><br><br>
<div class="loader"></div>
<div class="text">Webpage under process. Please wait...</div>
</body>
</html>