-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdone.php
74 lines (74 loc) · 1.53 KB
/
done.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
<?php
require 'core.inc.php';
header("refresh: 2 url=index.php");
?>
<!DOCTYPE html>
<html>
<head>
<title>LOGGING OUT!!</title>
<link rel="shortcut icon" href="d.ico" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css?family=Roboto|Roboto+Condensed" rel="stylesheet">
<style>
body
{
background-image: url("back.jpg");
}
.TITLE
{
color:white;
position: absolute;
width: 100px;
height: 50px;
top: 50%;
left: 50%;
margin-left: -50px; /* margin is -0.5 * dimension */
margin-top: -25px;
}
#progressbar{
height: 26px;
position: absolute;
left: 50%;
top: 50%;
width: 200px;
background: rgba(159, 159, 159, 0.5);
border-radius: 10px;
margin: -20px 0 0 -100px;
padding: 2px;
}
#loading{
transition: all 500ms ease;
height: 20px;
width: calc(100% - 10px);
border-radius: 8px;
background: #474747;
position: absolute;
margin: 3px;
display: inline-block;
animation: load 2.5s ease infinite;
}
#load{
font-family: Arial;
font-family: 'Roboto Condensed', sans-serif;
font-weight: bold;
text-align: center;
margin-top: -30px;
color:
}
@keyframes load{
0%{
width: 2%;
}
10%{
width: 10%;
}
}
</style>
</head>
<body>
<div id="progressbar">
<span id="loading"></span>
<div id="load">Assigning Questions!!</div>
</div>
</body>
</html>