-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuserPage.html
106 lines (89 loc) · 3.46 KB
/
userPage.html
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
<!-- ******************************** This page is done by Chayma Boukthir ******************************** -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./style/userPage.css">
<link rel="stylesheet" href="./style/homePage.css">
<title>TuniBest | Watch Movies Online Free on Tunibest</title>
</head>
<body>
<!-- The navigation bar -->
<nav>
<a href="homePage.html"><img height="30px" src="./assets/logo.png" alt="logo"></a>
<div class="searchBar">
<input class="search-input" type="text" placeholder="Search for a movie" name="" value="">
<img class="search-icon" width="15px" src="./assets/search-icon.png" alt="search icon">
</div>
<a href="userPage.html">
<img height="40px" src="./assets/avatar.png" alt="profile">
<p>Salim Ben Hammadi</p>
</a>
</nav>
<!-- the main body -->
<section id="MainBody">
<div class="subtitle">Watch List</div>
<br>
<!-- List of options for the user, he can sort and filter the movies -->
<div class="List">
<select name="sort" id="sort">
<option value="default">Sort</option>
<option value="latest">Latest</option>
<option value="trending">trending</option>
<option value="ranking">Ranking</option>
</select>
<select name="filter" id="filter">
<option value="filter">Filter</option>
<option value="comedy">Comedy</option>
<option value="Action">Action</option>
<option value="romance">Romance</option>
<option value="horror">Horror</option>
<option value="fantasy">Fantasy</option>
<option value="sciencefiction">Science Fiction</option>
</select>
<br>
<br>
<section class="watchList">
<!-- the side bar navigation : where user can navigate to watch list page or edit profile page -->
<aside class="loginlist">
<ul>
<li><a href="userPage.html">Watch List</a></li>
<li><a href="editPage.html">Edit Profile</a></li>
<li><a href="addMoviePage.html">Add a Movie</a></li>
</ul>
</aside>
<!-- List of the movies -->
<div id="images" class="images">
<div>
<img src="./assets/business family.jpg" width="200px" height="300px">
<br>
<snap><sub> Business Family</sub></snap>
<br>
<snap class="currently" style="font-size: x-small;"> SS3 Ep6</snap>
</div>
<div>
<img src="./assets/call-my-agent_poster_goldposter_com_1.jpg" width="200px" height="300px">
<br>
<snap><sub> Call My Agent</sub></snap>
<br>
<snap class="currently" style="font-size: x-small;"> SS1 Ep22</snap>
</div>
<div>
<img src="./assets/on the verge.jpg" width="200px" height="300px">
<br>
<snap><sub> On The Verge</sub></snap>
<br>
<snap class="currently" style="font-size: x-small;"> SS6 Ep4</snap>
</div>
<div>
<img src="./assets/The_hook_up_plan.jpg" width="200px" height="300px">
<br>
<snap><sub> The Hook Up Plan</sub></snap>
<br>
<snap class="currently" style="font-size: x-small;"> SS2 Ep14</snap>
</div>
</div>
</section>
</section>
</body>
</html>