-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpurchase-plan.html
65 lines (62 loc) · 2.68 KB
/
purchase-plan.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>J & R Films</title>
<!-- Bootstrap icons -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
<!-- Google font - Jersey 15 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Jersey+15&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<!-- Google font - Montserrat -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Jersey+15&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<nav id="menu" class="raleway-regular">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="films.html">Movies</a></li>
<li><a href="artists.html">Artists</a></li>
<li><a href="subscription-plans.html">Subscription plans</a></li>
<li><a style="text-decoration: underline;" href="purchase-plan.html">Purchase plan</a></li>
</ul>
</nav>
</header>
<main>
<div class="flex-column container">
<h1>Purcharse plan</h1>
<div class="form">
<select id="select-plan-type">
<option value="" disabled selected>Choose a plan type:</option>
</select>
<input id="txt-number-users" type="text" placeholder="Enter number of users" />
<input id="txt-credit-card" type="text" placeholder="Enter credit card number" />
<button class="btn-primary" id="btn-order-summary">View order summary</button>
</div>
</div>
<div id="orderSummary" class="flex-column container">
<h1>Order summary</h1>
<div class="flex-column form" id="order-summary-list"></div>
</div>
</main>
<footer>
<div>
<i class="bi bi-facebook"></i>
<i class="bi bi-instagram"></i>
<i class="bi bi-twitter-x"></i>
</div>
<p>© 2024 J & R Films. All rights reserved.</p>
</footer>
<script type="text/javascript" src="js/purchase-plan.js"></script>
</body>
</html>