forked from cedrickjames/helpdesk-production
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
50 lines (38 loc) · 1.16 KB
/
index.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
<?php
# this line is the only line commented originally
# but because setting the system's dns programatically
# is stupid as fuck, i will be commenting the lines after this.
#
# PS. Please stop this idiocracy.
# PPS. we have a proper function for this
#
# Regards,
# Your systems and network administrator
## include ("includes/connect.php");
#$sql2 = "SELECT `link` FROM `setting`";
#$result2 = mysqli_query($con, $sql2);
#$link = "";
#while($list=mysqli_fetch_assoc($result2))
#{
#$link=$list["link"];
#}
?>
<html>
<head>
<meta http-equiv="refresh" content="0;url=<?php #echo $link;?>login.php" />
<title></title>
</head>
<body>
<!--
<div class="flex justify-center items-center">
<div class="spinner-border animate-spin inline-block w-8 h-8 border-4 rounded-full" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div> -->
<div id="loading-screen" class=" w-full h-full fixed block top-0 left-0 bg-white opacity-75 z-50">
<span class="text-green-500 opacity-75 top-1/2 my-0 mx-auto block relative w-0 h-0">
<i class="fas fa-circle-notch fa-spin fa-5x"></i>
</span>
</div>
</body>
</html>