-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.php
37 lines (30 loc) · 876 Bytes
/
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
<?php session_start();
if(isset($_SESSION['login'])&&$_SESSION['login']=="true"){
header('Location: /profile.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="author" content="Vishvajit Kher, Akash Chamaria, karan Acharya">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<!-- Bootstrap CSS -->
<title>Exsplitz - let's share</title>
<?php include 'includes/header-files.php'; ?>
</head>
<body>
<!-- Navigation Bar -->
<?php include 'includes/nav.php'; ?>
<!-- Body Main -->
<section>
<?php include 'includes/main.php'; ?>
</section>
<!-- Footer -->
<section>
<?php include 'includes/footer.php'; ?>
</section>
</body>
</html>