-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
41 lines (24 loc) · 1.03 KB
/
Copy pathindex.php
File metadata and controls
41 lines (24 loc) · 1.03 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
<?php require_once ('includes/loggedinCheck.php')?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="styles/notestyle.css" type="text/css">
</head>
<body>
<?php require_once ('includes/navbar.php');?>
<?php require_once ('includes/content.php');?>
<?php require_once ('includes/forgotpass.php');?>
<?php require_once ('includes/loginForm.php');?>
<?php require_once ('includes/signupForm.php');?>
<div class="footer">
<p>This is a footer,Copyright <?php $today=date("Y");echo $today; ?></p>
</div>
<!-- jQuery CDN -->
<script src="https://code.jquery.com/jquery-1.12.0.min.js"></script>
<!-- Bootstrap Js CDN -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="js/javascript.js"></script>
</body>
</html>