-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.php
65 lines (63 loc) · 1.7 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
<?php
/*Include common.php*/
require("includes/common.php");
/*Check for active session */
if (isset($_SESSION['email'])) {
header('location: mentors.php');
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Welcome | Mentor Finder</title>
<!--Roboto Font-->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap" rel="stylesheet">
<!-- Bootstrap Core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<!-- jQuery -->
<script src="js/jquery.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="js/bootstrap.min.js"></script>
</head>
<body style="padding-top:50px;">
<!--Header Start-->
<?php
include 'includes/header.php';
?>
<!--Header End-->
<!--Content Start-->
<div class="content">
<!--Main banner image-->
<div class="banner_image" id="banner">
<div class="container">
<div class="row banner_content">
<div class="col-md-8 col-md-offset-2 blocks">
<h2 style="color: white">Find and Mentor</h2><br>
<a href="mentors.php" class="btn btn-blue btn-primary">Search now</a>
</div>
</div>
</div>
</div>
<!--Main banner image end-->
</div>
<!--Content Start-->
<?php include 'includes/footer.php'; ?>
<script src="https://cdnjs.cloudflare.com/ajax/libs/three.js/r134/three.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.net.min.js"></script>
<script>
VANTA.NET({
el: "#banner",
mouseControls: true,
touchControls: true,
gyroControls: false,
minHeight: 200.00,
minWidth: 200.00,
scale: 1.00,
scaleMobile: 1.00
})
</script>
</body>
</html>