-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
47 lines (38 loc) · 2.14 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Streamflix Mobile</title>
<meta name="description" content="Streamflix Mobile - Stream your favorite movies and TV shows on the go.">
<meta name="keywords" content="movies, TV shows, streaming, entertainment, Streamflix">
<meta name="author" content="Streamflix Team">
<meta name="theme-color" content="#000000">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="manifest" href="/manifest.json">
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<div class="sidebar" aria-label="Main navigation">
<a href="#" onclick="loadMovies()" aria-label="Movies"><i class="fas fa-film"></i></a>
<a href="#" onclick="loadTVShows()" aria-label="TV Shows"><i class="fas fa-tv"></i></a>
<a href="#" onclick="toggleSearch()" aria-label="Search"><i class="fas fa-search"></i></a>
<a href="#" onclick="loadWatchlist('both')" aria-label="Watchlist"><i class="fas fa-heart"></i></a>
</div>
<div class="container">
<div class="search-container" id="search-container" aria-label="Search movies and TV shows">
<input type="text" id="search-input" class="search-input" placeholder="Search movies and TV shows..."
oninput="liveSearch()" onsubmit="searchMovies()" aria-label="Search input">
<button onclick="searchMovies()" class="search-btn" aria-label="Search"><i class="fas fa-search search-icon"></i>Search</button>
</div>
<div class="movie-list" id="movie-list" aria-label="List of movies and TV shows">
<!-- Movie cards will be inserted here -->
</div>
<div class="movie-details" id="movie-details" aria-label="Movie details">
<!-- Movie details will be displayed here -->
<button class="back-btn" id="back-btn" onclick="goBack()" aria-label="Back to list"><i class="fas fa-arrow-left"></i></button>
</div>
</div>
<script src="/js/script.js"></script>
</body>
</html>