-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfirm.html
79 lines (66 loc) · 3.17 KB
/
confirm.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
67
68
69
70
71
72
73
74
75
76
77
78
79
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Movie Book | Confirm Page</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="/assets/style/style.css">
<link href="https://fonts.googleapis.com/css2?family=Baloo+Paaji+2:wght@400;500;600&display=swap" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.13.0/js/all.min.js"
integrity="sha256-KzZiKy0DWYsnwMF+X1DvQngQ2/FxF7MF3Ff72XcpuPs=" crossorigin="anonymous"></script>
</head>
<body>
<header class="d-flex display-4 justify-content-center align-items-center">
<div class="container text-center py-5 d-flex justify-content-between">
<a href='./index.html' class="text-dark mx-5"><i class="fas fa-arrow-left"></i></a>
<h1><span class="text-danger">Movie</span> Ticket <span class="text-success">Booking</span> System</h1>
</div>
</header>
<main class="d-flex justify-content-center align-items-center">
<div class="card">
<div class="card-body">
<h2 class="card-title text-center my-4"> Thank You <span class="text-danger"> <i
class="fas fa-heart"></i></span>
Booking
Successful
</h2>
<div class="row">
<div class="col-md-6">
<img src="" class="card img-fluid d-none" id="moviePoster" alt="" />
</div>
<div class="col-md-6">
<h5 class="card-subtitle my-2 text-muted" id="moviebox">Movie Name</h5>
<p class="card-text">
City : <span id="cityLocal"></span> <br>
Seats : <div id='selected-seat'>
</div>
</p>
<p class="card-text" id="total">
Total : 0 <i id="getTotal" class="fas fa-rupee-sign"></i>
</p>
<button onclick="printNow()" class="btn btn-sm btn-success ">Print Ticket</button>
<button class="btn btn-sm btn-danger " onclick="cancelNow()">Cancel Now</button>
</div>
</div>
</div>
</div>
</main>
<footer id="footer" class="footer mt-5 d-flex justify-content-center">
<p class="lead">Made with by <span class="text-danger"> <i class="fas fa-heart"></i></span> <a
href="https://www.codersadhu.tech">codersadhu.tech</a>
</p>
</footer>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
<script src="/assets/js/confirm.js"></script>
</body>
</html>