-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
33 lines (31 loc) · 896 Bytes
/
index.php
File metadata and controls
33 lines (31 loc) · 896 Bytes
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
<?php
include 'header.php';
?>
<body>
<script>
initialization();
</script>
<?php
if(!isset($_COOKIE['admin']) || $_COOKIE['admin'] != 'true'){
include 'login.php';
}
?>
<div id='screen_border'>
<div id='options_list'>
<ul id='options_list_right'>
<li class='olr_li'>
<input id='exit_button' class='options_buttons' type='button' value='退出' onclick='exit()'>
</li>
</ul>
</div>
<div id='content_border'>
<div id='build_menu'>
<ul id='build_menu_list'>
<li class='bml_li'><input id='build_frigate' class='menu_buttons' type='button' value='护卫舰'></li>
</ul>
</div>
<div id = 'test_box' class='unit'>test</div>
</div>
</div>
</body>
</html>