-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
117 lines (115 loc) · 4.74 KB
/
Copy pathindex.php
File metadata and controls
117 lines (115 loc) · 4.74 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
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
session_name("deadBox");
session_start();
$_SESSION['valid'] = 0;
require('./php/error_function.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>deadBox</title>
<link rel="shortcut icon" href="./img/favicon.ico">
<link rel="stylesheet" href="./css/bootstrap.css">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="http://ps11.pstcc.edu/~c2230a11/site/" class="navbar-brand">deadBox</a>
</div>
<div class="navbar-collapse collapse">
<form id="logForm" class="navbar-form navbar-right" action="http://ps11.pstcc.edu/~c2230a11/site/php/process_login.php" method="post">
<div class="form-group">
<?php
show_error();
?>
</div>
<div class="form-group">
<input type="text" placeholder="Username" class="form-control" name="username" required>
<!--<input type="email" placeholder="Email" class="form-control" required>-->
</div>
<div class="form-group">
<input type="password" placeholder="Password" class="form-control" name="password" required>
<!--<input type="password" placeholder="Password" class="form-control" required>-->
</div>
<button type="submit" class="btn btn-success">Sign in</button>
</form>
</div>
</div>
</div>
<div class="jumbotron text-center">
<div class="container">
<h1>Did you hate...</h1>
<p class="lead">
Al Pacino in <i>Jack and Jill</i>? Jeff Bridges in <i>RIPD</i>? John Voight in <i>SuperBabies: Baby Geniuses 2</i>!?...Great actors, god-awful films. They should've quit before they tore apart the fabric of space and time. Do you wish you had a place to impose your obviously correct opinion upon the rest of the world? deadBox, where careers go to die!
</p>
<p><a class="btn btn-lg btn-success" href="./register.php">Register now!</a></p>
</div>
</div>
<section class="highlights">
<div class="container text-center">
<h2 class="highText">Your place for trolling and fighting with friends.</h2>
<div class="row">
<div class="col-lg-4">
<span class="glyphicon glyphicon-search"></span>
<h3>Search</h3>
<p>Tap into TMDB to search for your favorite actors & actresses.</p>
</div>
<div class="col-lg-4">
<span class="glyphicon glyphicon-thumbs-up"></span>
<h3>Vote</h3>
<p>Let the world know how much was too much.</p>
</div>
<div class="col-lg-4">
<span class="glyphicon glyphicon-warning-sign"></span>
<h3>Argue</h3>
<p>See what other people think and tell them why they're wrong!</p>
</div>
</div>
</div>
</section>
<hr>
<section class="forrest">
<div class="container">
<!--<div class="text-center">
<h1 id="top" class="text-center clearfix">Dynamic content via TMDb search.</h1>
<h1 id="right" class="pull-right clearfix">Read, watch, play.</h1>
<h1 id="left" class="pull-left clearfix">Access actor credits.</h1>
<div class="container pic">-->
<img src="./img/deadComp1.png" alt="comp" id="comp" class="img-responsive ui">
<!--</div>-->
</div>
</section>
<section class="quotes">
<div class="container text-center">
<h2 class="quoteText">Your opinion, best opinion.</h2>
<div class="row">
<div class="col-lg-6">
<img class="quotePic" src="./img/reporter.jpg" alt="reporter">
<p class="quote1">"Gary Oldman has never been in a bad movie!"</p>
<span>-- <strong class="highQuote">Obnoxious reporter</strong>,<cite> pretentious magazine</cite></span>
</div>
<div class="col-lg-6">
<img class="quotePic" src="./img/hipster.jpg" alt="hipster">
<p class="quote1">"If Carrot Top had never been born the world would be a better place..." </p>
<span>-- <strong class="highQuote">Not Carrot Top</strong>,<cite> hipster-blog.com</cite></span>
</div>
</div>
</div>
</section>
<footer class="text-center">
© someone who will probably get sued 2013
</footer>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="./js/splashValidation.js"></script>
<script src="./js/bootstrap.js"></script>
</body>
</html>