-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
37 lines (35 loc) · 1.15 KB
/
index.php
File metadata and controls
37 lines (35 loc) · 1.15 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
<?php
include 'session.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>SquareOne | Your feed aggregator</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/stylesheet.css">
<!-- Latest compiled and minified JavaScript -->
<script src="js/jquery-1.11.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/index.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<?php include("_navbar.php"); ?>
<div class="jumbotron text-center">
<div class="container">
<h1>Hello, reader!</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc ultricies, dui id elementum ornare, quam ligula facilisis neque, at semper libero lorem in augue. Nullam.</p>
<p><a class="btn btn-primary btn-lg" href="#signupModal" role="button" data-toggle="modal" data-target="#signinModal">Get Started</a></p>
</div>
</div>
<hr class="half-rule">
<!-- <script>
$(function() {
$('#formSubmit').click(function() {
signUp();
});
});
</script> -->
</body>
</html>