-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwatch.php
138 lines (118 loc) · 2.56 KB
/
watch.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
130
131
132
133
134
135
136
137
138
<?php
require_once 'header.php';
echo <<<_HONORABLE
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz&display=swap" rel="stylesheet">
<style>
#content{
background-color: #4E1003;
height: 100%;
background-position: center;
/*background-repeat: no-repeat;*/
background-size: 100%;
width: 100%;
background-image: url("curtain02.jpg");
}
body {
background-color: black;
}
table {
margin-top: 75px;
width:70%;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
border-radius: 2px;
font-family: 'Yanone Kaffeesatz', sans-serif;
}
th, td {
padding: 15px;
text-align: left;
}
#t04 tr:nth-child(even) {
background-color: #eee;
}
#t04 tr:nth-child(odd) {
background-color: #fff;
}
th {
background-color: darkgray;
color: white;
}
.tabletop {
background-color: black;
text-align: center;
font-size:larger;
font-stretch:wider;
}
#t04 {
margin-left: 15%;
display: inline-table;
}
h3 {
font-family: 'Special Elite', cursive;
color: white;
font-size:larger;
}
tr {
font-size: larger;
}
</style>
<body>
<table id="t04">
<tr><th colspan="2" class="tabletop">Future Watch List</th></tr>
<tr>
<th>Movie Name</th>
<th>Edit</th>
</tr>
<tr>
<td>Princess Bride</td>
<td><button>Edit</button></td>
</tr>
<tr>
<td>John Wick</td>
<td><button>Edit</button></td>
</tr>
<tr>
<td>Monty Python and the Holy Grail</td>
<td><button>Edit</button></td>
</tr>
<tr>
<td>Shrek</td>
<td><button>Edit</button></td>
</tr>
<tr>
<td>The Big Lebowski</td>
<td><button>Edit</button></td>
</tr>
<tr>
<td>Spaceballs</td>
<td><button>Edit</button></td>
</tr>
<tr>
<td>Megamind</td>
<td><button>Edit</button></td>
</tr>
<tr>
<td>Ace Ventura when Nature Calls</td>
<td><button>Edit</button></td>
</tr>
<tr>
<td>Army of Darkness</td>
<td><button>Edit</button></td>
</tr>
<tr>
<td>Lord of the Rings Fellowship of the ring</td>
<td><button>Edit</button></td>
</tr>
</table>
<h3 style="text-align: center;"> Hail to the King Baby </h3>
</body>
_HONORABLE;
require_once 'footer.php';
?>