-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
66 lines (59 loc) · 1.85 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html>
<head>
<title>Coursework 1 - Adrian Vazquez</title>
<script src=//code.jquery.com/jquery-3.1.1.min.js></script>
<script src=dom.js></script>
<link href="https://fonts.googleapis.com/css?family=Fjalla+One|Josefin+Sans" rel="stylesheet">
<link rel=stylesheet href=dom.css>
</head>
<body>
<div id='content'>
<h1>Coursework 1 - Adrian Vazquez</h1>
<p>Select the seating that you would like by clicking on the seating plan.</p>
<div id="widgets-left">
<div class="info">
<h2>Movie: <span id=movie></span></h2>
<div class="left">Date: <span id="date"></span></div>
<div class="left">Screen: <span id=screen></span></div>
<div class="left">Rating: <span id="rating"></span></div>
<div id="image"></div>
</div>
</div>
<div id="widgets-right">
<div class="customer">
<h2>Customer seats:</h2>
<div id="bookingSummary">
<div>Seats booked: <span id='mySeats'>0</span> of <span id='myBookings'>3</span></div>
</div>
<h3>Price: £<span class="totalPrice"></span></h3>
<button type="button" class="button" disabled>NEXT</button>
<div class="errorMsg"></div>
</div>
</div>
<div id="page">
<div class="cinema">
<h2>Select your seats:</h2>
<div id="theatre"></div>
<div id="cinema-screen">Screen</div>
</div>
<div class="legend">
<table style="width:100%">
<tr>
<th>Sofa</th>
<th>Armchair</th>
<th>Unavailable</th>
<th>Your Seats</th>
</tr>
<tr>
<td id="left-sofa-free"></td>
<td id="armchair-free"></td>
<td id="left-sofa-booked"></td>
<td id="left-sofa-mine"></td>
</tr>
</table>
</div>
</div>
</div>
</body>
</html>