-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile.php
69 lines (65 loc) · 1.25 KB
/
profile.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
<?php
session_start();
if(!isset($_SESSION['userLoggedIn'])){
header('Location: register.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<title>My Profile</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<style type="text/css">
body {
background: #000000;
color: #FFFFFF;
}
.image {
border: 1px solid white;
border-radius: 7px;
padding: 10px;
width: 100%;
height: 390px;
margin-top: 10px;
}
img {
height: 250px;
width: 100%;
margin-bottom: 2px;
}
.more {
margin-top: 10px;
}
.btn {
border: 1px solid white;
border-radius: 10px;
background-color: rgb(0, 0, 0);
color: white;
}
.btn:hover {
background-color: rgba(0, 0, 0, 0.7);
}
h2 {
margin: 15px;
text-align: center;
}
.container {
margin-top: 100px;
}
</style>
</head>
<body>
<?php include('navbar.php'); ?>
<div class="container">
<h2>Watched Shows</h2>
<div id="watched">
</div>
<h2>Watchlist</h2>
<div id="wantToWatch" class="row">
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script type="text/javascript" src="profile.js"></script>
</body>
</html>