-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnull.html
36 lines (31 loc) · 975 Bytes
/
null.html
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
<?php
require("lib/common.lib.html");
require("include/header.html");
$msg = filter_input(INPUT_GET, 'msg', FILTER_SANITIZE_SPECIAL_CHARS);
?>
<div class="top">
<div class="panel-heading">
<h1>Error : <?php echo($code[$msg]); ?></h1>
<div class="subnav" data-pjax>
<a href="index.html" class="btn btn-primary float-right" role="button" data-hotkey="h">Home</a>
</div>
</div>
</div>
<div class="file-wrap">
<table class="files js-navigation-container js-active-navigation-container" data-pjax>
<tbody>
<tr>
<td>
<div style="width:100%;height:200px;text-align:center;margin:1px">
<?php
printf("<td align=\"center\"><br><img src=\"image/pvszomb%s.png\"><br></td>\n", rand(1, 6));
?>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<?
require("include/footer.html");
?>