-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
58 lines (52 loc) · 2.43 KB
/
index.php
File metadata and controls
58 lines (52 loc) · 2.43 KB
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<!--<html xmlns="http://www.w3.org/1999/xhtml" lang="en-EN" xml:lang="en-EN"> -->
<?php
header('Content-Type: text/html; charset=utf-8');
?>
<html>
<head>
<title>admin_sys</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<link rel="stylesheet" href="static/css/bootstrap.min.css" type="text/css">
<script type="text/javascript" src="static/js/jquery.min.js"></script>
<script type="text/javascript" src="static/js/bootstrap.min.js"></script>
<script type="text/javascript" src="static/js/application.js"></script>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<span class="brand" href="#">admin_sys</span>
<ul class="nav">
<li class="active"><a href="">Главная</a></li>
<li><a href="login.php">Авторизация</a></li>
</ul>
</div>
</div>
</div>
<br/><br/><br/>
<div class="span9 offset7">
<img src="static/img/logo.png" />
</div>
<div class="container" style="margin-top: 60px;">
<div class="row" style="margin-bottom: 10px;">
<div class="span9 offset3">
<h3>Добро пожаловать в панель администрирования</h3>
</div>
</div>
<div class="row"style="margin-top: 50px;">
<div class="span6 offset3">
<div class="alert alert-warning">
<button class="close" data-dismiss="alert">×</button>
<strong>Для доступа в систему нажмите на кнопку "Авторизация" на панели сверху!</strong>
</div>
<div class="alert alert-warning">
<button class="close" data-dismiss="alert">×</button>
Система находится в стадии разработки!
</div>
</div>
</div>
</div>
</body>
</html>