-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
47 lines (42 loc) · 1.21 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>
<head>
<title>Movie Rating App</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="container">
<h1 id="movieTitle"></h1>
<div class="rating-section">
<h2>Rate the movie</h2>
<div id="ratingSlider">
<div class="stars"></div>
<div class="rating-bar"></div>
</div>
<button id="submitBtn" disabled>Submit</button>
<input type="text" id="notesInput" placeholder="Enter notes">
</div>
<div class="ratings-section">
<h2>Ratings</h2>
<table id="ratingsTable">
<thead>
<tr>
<th>Review Number</th>
<th>Time</th>
<th>Rating</th>
<th>Notes</th>
</tr>
</thead>
<tbody id="ratingsTableBody"></tbody>
</table>
</div>
<div class="rating-graph" id="ratingGraph">
<h2>Rating Graph</h2>
<canvas id="chart"></canvas>
</div>
<button id="finalSubmitBtn" class="final-submit-btn">Generate Rating Graph</button>
</div>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="script.js"></script>
</body>
</html>