forked from booruguru/UserPie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing-page.php
93 lines (61 loc) · 1.9 KB
/
landing-page.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
82
83
84
85
86
87
88
89
90
91
<?php
/*
UserCake Version: 1.0
http://usercake.com
*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>UserPie | <?php echo $websiteName; ?> </title>
<?php require_once("head_inc.php"); ?>
</head>
<body>
<?php require_once("navbar.php"); ?>
<div id="content">
<!-- Carousel
================================================== -->
<div id="carousel" class="carousel">
<div class="carousel-inner">
<div class="item active">
<img src="assets/img/01.jpg" alt="Pic 1" />
<div class="carousel-caption">
<p>Pic 1</p>
</div>
</div>
<div class="item">
<img src="assets/img/02.jpg" alt="Pic 2" />
<div class="carousel-caption">
<p>Pic 2</p>
</div>
</div>
<div class="item">
<img src="assets/img/03.jpg" alt="Pic Pic 1" />
<div class="carousel-caption">
<p>Pic 3</p>
</div>
</div>
</div>
<a class="carousel-control left" href="#carousel" data-slide="prev">‹</a>
<a class="carousel-control right" href="#carousel" data-slide="next">›</a>
</div>
<script>
$(function() {
$('.carousel').carousel('pause');
});
</script>
<hr>
<p style="text-align:center"> <a class="btn btn-large" href="login.php">Login</a>
<a class="btn btn-danger btn-large" href="register.php">Register</a></p>
<br>
<p style="text-align:center"><a href="forgot-password.php">Forgot password</a> | <a href="resend-activation.php">Resend Activation email</a></p>
<div class="clear"></div>
</div>
<script>
$(function() {
$('.carousel').carousel('pause');
});
</script>
</body>
</html>