forked from investdice/investdice.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.php
27 lines (27 loc) · 1.15 KB
/
test.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
<!doctype html>
<head>
<title>InvestDice</title>
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="node_modules/bootstrap/dist/css/bootstrap-theme.min.css" rel="stylesheet">
<?php
if (isset($_GET["s"])){
echo "<link href=\"whitebgstyle.css\" rel=\"stylesheet\">";
} else {
echo "<link href=\"style.css\" rel=\"stylesheet\">";
}
?>
</head>
<body>
<div id="app"></div>
<script src="node_modules/react/dist/react.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/CBuffer/cbuffer.js"></script>
<script src="vendor/cryptojs-sha256-3.1.2.js"></script>
<script src="node_modules/socket.io-client/socket.io.js"></script>
<script src="vendor/lodash.min.js" type="text/javascript"></script>
<script src="node_modules/wolfy87-eventemitter/EventEmitter.js"></script>
<script src="node_modules/bootstrap/js/tooltip.js"></script>
<script src="node_modules/bootstrap/js/popover.js"></script>
<script src="app.js" type="text/javascript"></script>
<script src="//www.google.com/recaptcha/api.js?render=explicit&onload=onRecaptchaLoad" async defer></script>
</body>