-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (32 loc) · 1.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="/vite.svg" type="image/svg">
<title>Movierama</title>
<script type="module" src="src/app.ts" defer></script>
</head>
<body>
<dialog id="movie-details-dialog" class="movie-details-dialog"></dialog>
<header class="header">
<h1>Movierama</h1>
<div class="search-container">
<label for="search-input" class="search-label">
<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px">
<path
d="M784-120 532-372q-30 24-69 38t-83 14q-109 0-184.5-75.5T120-580q0-109 75.5-184.5T380-840q109 0 184.5 75.5T640-580q0 44-14 83t-38 69l252 252-56 56ZM380-400q75 0 127.5-52.5T560-580q0-75-52.5-127.5T380-760q-75 0-127.5 52.5T200-580q0 75 52.5 127.5T380-400Z" />
</svg>
</label>
<input type="text" class="search" id="search-input" placeholder="Search for movies" />
</div>
</header>
<main class="content">
<h3 id="error-message" class="error-message" style="display: none;">Error</h3>
<h2 id="page-title" class="page-title">In Theaters</h2>
<div class="results"></div>
</main>
<footer>
</footer>
</body>
</html>