-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
executable file
·50 lines (45 loc) · 1.58 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
<?php
session_start();
?>
<!DOCTYPE html>
<html>
<head>
<?php include_once('includes/util.php'); ?>
<?php include_once('includes/head.php'); ?>
<script src="/js/index.js"></script>
</head>
<body>
<div class="container">
<?php include_once('includes/nav.php'); ?>
<div id="after-nav"></div>
<div class="jumbotron">
<h1>Document Management System</h1>
<p class="lead has-error error text-error">
This is the CDC Document Management System. Unauthorized access
to critical systems is PROHIBITED. Leave IMMEDIATELY if unauthorized.
Unauthorized access WILL be prosecuted under the Computer Fraud
and Abuse Act of 1986.
</p>
<p>
Select a document category below to view or download files. Use the navigation options
above to upload a new file or adjust category/user settings.
</p>
</div>
<div style="display:flex;justify-content:center;align-items:center;" id="login">
<div style="width:560px;height:480px;" id="login-inner">
Username:<input type="text" id="username"><br/>
Password:<input type="password" id="password"><br/>
<button class="btn btn-primary" onclick="doLogin();">Log In</button>
</div>
</div>
<div class="row marketing">
<div class="col-lg-6" id="left-list"></div>
<div class="col-lg-6" id="right-list"></div>
<hr/>
<footer class="footer">
<p>© 2015 CDC, Inc.</p>
<p>For technical support, contact 232-2502.<p>
</footer>
</div> <!-- /container -->
</body>
</html>