-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
129 lines (92 loc) · 4.73 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
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
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<style type="text/css">
body {
margin: 0 0 0 0;
}
</style>
<!--Global Meta -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title and Favicon -->
<title>RAM Livestream</title>
<link rel="shortcut icon" href="assets/favicon.png" type="image/x-icon">
<!-- Styling Links -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:200,300,300i,400,400i,600,600i,700,700i" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<script defer src="https://use.fontawesome.com/releases/v5.0.6/js/all.js"></script>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<!-- Slider Refs -->
<!-- Feather Icons -->
<link rel="stylesheet" type="text/css" href="fonts/feather/style.css">
<script src="js/modernizr.custom.js"></script>
<!-- /Slider Refs -->
</head>
<body id="top" oncontextmenu="return false">
<!-- Landing -->
<section class="landing fullpage" id="landing">
<div class="text">
<img src="assets/apm.png" class="apm animated fadeInDown ani1">
<h1 class="h1text animated fadeInUp ani2"><span class="bold">canada bkys ram <br/>livestream</span></h1>
<!-- Empty Input -->
<?php
if(@$_GET['Empty']==true)
{
?>
<div class="input100 red animated fadeIn ani3"><?php echo $_GET['Empty'] ?></div>
<?php
}
?>
<!-- Invalid Input -->
<?php
if(@$_GET['Invalid']==true)
{
?>
<div class="input100 red animated fadeIn ani3"><?php echo $_GET['Invalid'] ?></div>
<?php
}
?>
<!-- Form Code -->
<div class="wrap-login100">
<form class="login100-form" method="POST" action="process.php">
<div class="wrap-input100 animated fadeIn ani3">
<input class="input100" type="text" name="username" placeholder="username">
<span class="focus-input100"></span>
</div>
<div class="wrap-input100 animated fadeIn ani4">
<input class="input100" type="password" name="password" placeholder="password">
<span class="focus-input100"></span>
</div>
<div class="container-login100-form-btn animated fadeIn ani5">
<div class="wrap-login100-form-btn">
<div class="login100-form-bgbtn"></div>
<button class="login100-form-btn type" type="submit" name="login">
login
</button>
</div>
</div>
</form>
</div>
<!-- /Form Code -->
<img src="assets/footer.png" class="footer animated fadeIn ani6">
</div>
</section>
<!-- Regular JavaScript -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/waypoints.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
<script src="js/jquery.flexslider.js"></script>
<script src="js/modernizr.js"></script>
</body>
</html>