-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomic.php
82 lines (76 loc) · 3.45 KB
/
comic.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
<?php
session_start();
if(!isset($_SESSION['user']))
{
header("Location: index.php");
}
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="favicon.ico">
<title>Haruhi Suzumiya Season 3 Script!</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/signin.css" rel="stylesheet">
</head>
<body class="text-center">
<div class="container-fluid">
<div class="row h-100">
<div class="col-sm-12 col-md-12 col-lg-12 col-xl-4 align-self-end login-box">
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="d-flex flex-grow-1">
<span class="w-100 d-lg-none d-block"><!-- hidden spacer to center brand on mobile --></span>
<a class="navbar-brand d-lg-inline-block" href="#">
Haruhi Suzumiya
</a>
<div class="w-100 text-right">
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#myNavbar">
<span class="navbar-toggler-icon"></span>
</button>
</div>
</div>
<div class="collapse navbar-collapse flex-grow-1 text-right" id="myNavbar">
<ul class="navbar-nav nav-pills ml-auto flex-nowrap">
<li class="nav-item">
<a href="#" class="nav-link m-2 menu-item active">Home</a>
</li>
<li class="nav-item">
<a href="about-comic.php" class="nav-link m-2 menu-item">About</a>
</li>
<li class="nav-item">
<a href="about-author.php" class="nav-link m-2 menu-item">Author</a>
</li>
<li class="nav-item">
<a class="nav-link m-2 menu-item" href="details.php">Details</a>
</li>
</ul>
</div>
</nav>
<!-- <div class="login-background-image"></div> -->
<form class="form-signin" name="loginForm" id="loginForm">
<div class="form-wrapper" style="margin:10px;">
<!-- 16:9 aspect ratio -->
<div class="embed-responsive embed-responsive-16by9" style="margin-bottom:5px;">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/mQV5ymUVrhw" frameborder="0" allowfullscreen=""></iframe>
</div>
<a href="logout.php?logout=true" class="btn btn-lg btn-primary btn-block" name="logoutBtn" id="logoutBtn">Logout</a>
<p class="mt-5 mb-3 text-muted">© 2017-2018</p>
</div>
</form>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/login.js"></script>
</body>
</html>