-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
55 lines (52 loc) · 969 Bytes
/
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
<!DOCTYPE html>
<html>
<?php
/*
Description: Burner Movies for free viewing.
Author: David McRae, Oliver Dickens
*/
include 'Controller/session.php';
include 'View/header.php';
?>
<style>
body
{
overflow:hidden;
background-color: #23232e;
color: #ffffff;
height:100vh;
}
.container
{
background-color: #23232e;
margin-top: 30vh;
letter-spacing: 1px;
}
.cd-btn
{
display: inline-block;
padding: 1.4em 1.6em;
margin-bottom: 2em;
border-radius: 50em;
background-color: #141418;
color: #ffffff;
font-weight: bold;
font-size: 1.3rem;
letter-spacing: 1px;
text-transform: uppercase;
}
.cd-btn:hover
{
background-color: #323c50;
color: #ffffff;
}
</style>
<body>
<div class="container text-center">
<h1>JustWatch</h1>
<a class="cd-btn mt-2" href="View/login.php" data-type="page-transition">Login</a>
<br />
<a class="cd-btn" href="View/register.php" data-type="page-transition">Register</a>
</div>
</body>
</html>