-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
52 lines (42 loc) · 1.17 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
51
52
<?php
$profile = 'false';
$photo = 'false';
if(isset($_GET['p'])) $profile = $_GET['p'];
if(isset($_GET['i'])) $photo = $_GET['i'];
$load_str = sprintf("main(%s,%s);", $profile, $photo);
?>
<html>
<head>
<script src="CRT.js" type="text/javascript"></script>
<script src="script.js" type="text/javascript"></script>
<style type="text/css">
body{
margin: 0px;
background-color: #FAFAFA;
font-family: sans-serif;
}
*{
font-family: sans-serif;
}
*::-webkit-scrollbar {
width: 6px;
}
*::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
}
*::-webkit-scrollbar-thumb {
background-color: darkgrey;
outline: 1px solid slategrey;
}
body::-webkit-scrollbar {
width: 12px;
}
</style>
<title>CRT Project</title>
</head>
<body onload=<?php echo($load_str) ?> >
<div id="root" style="background-color: inherit;">
</div>
<iframe name="skipFrame" style="display:none;" onload="SBox.checkLogin()"></iframe>
</body>
</html>