This repository has been archived by the owner on May 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
81 lines (67 loc) · 1.87 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang='en'>
<head>
<title>Home | Placement Logger</title>
<!-- META -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- END META -->
<!-- STYLES -->
<link rel="stylesheet" type="text/css" href="styles/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="styles/custom.css" />
<!-- END STYLES -->
</head>
<body>
<!-- CONTAINER -->
<div class='container'>
<!-- ROW -->
<div class='row'>
<div class='col-xs-12'>
<h1>Placement Logger</h1>
<!-- NAV -->
<ul class="nav nav-tabs">
<li role="presentation" class="active"><a href="#">Home</a></li>
<li role="presentation"><a href="history.php">Past Logs</a></li>
</ul>
<!-- END NAV -->
</div>
</div>
<!-- END ROW -->
<?php
require_once "checkTodayLog.php";
?>
<!-- NOTIFICATION -->
<div class='row' id='notification'>
<div class='col-xs-12'>
<div class="alert alert-success" role="alert">Successfully Logged Today</div>
</div>
</div>
<!-- END NOTIFICATION -->
<!-- ROW -->
<div class='row'>
<div class='col-xs-12'>
<!-- FORM -->
<form id='log_form'>
<h3>Enter Log:</h3>
<textarea type='text' name='log_val' id='log_field' ></textarea>
<br />
<br />
<button type="button" class="btn btn-primary" id="log_submit">Submit</button>
</form>
<!-- END FORM -->
</div>
</div>
<!-- END ROW -->
<!-- FOOTER -->
<?php require_once "footer.php" ?>
<!-- END FOOTER -->
</div>
<!-- END CONTAINER -->
<!-- SCRIPTS -->
<script type="text/javascript" src="scripts/jquery.min.js"></script>
<script type="text/javascript" src="scripts/bootstrap.min.js"></script>
<script type="text/javascript" src="scripts/insertLog.js"></script>
<!-- END SCRIPTS -->
</body>
</html>