-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·52 lines (43 loc) · 1.71 KB
/
index.php
File metadata and controls
executable file
·52 lines (43 loc) · 1.71 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
<html>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" >
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" ></script>
<head>
</head>
<body>
<div class="container">
<div id="after-nav"></div>
<div class="jumbotron">
<h1>Document Management System</h1>
<p class="lead">
This is the CDC Document Management System. Per 47 CFR 97.113, unauthorized access
to critical systems is PROHIBITED. Leave IMMEDIATELY if unauthorized.
</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">
<form action="login.php" method="post">
Username:<input type="text" name='user'><br/>
Password:<input type="password" name='passwd'><br/>
<input type="submit" value="Log in">
</form>
</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-7331.<p>
</footer>
</div> <!-- /container -->
</body>
</html>