-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuy_success.html
71 lines (69 loc) · 3.06 KB
/
buy_success.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
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Buy Success</title>
<link rel="stylesheet" href="{% static '/css/style.css' %}" />
<script src="https://kit.fontawesome.com/26719dd53c.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</head>
<body>
<div class="container">
<div class="scroll-up-btn">
<i class="fas fa-angle-up"></i>
</div>
<nav class="navbar">
<div class="max-width">
<div class="logo">
<a href="{% url 'Home Page' %}">Car Showroom Management System</a>
</div>
<ul class="menu">
<li><a id="abt" href="{% url 'Home Page' %}" class="menu-btn">Home</a></li>
<li><a id="first" href="{% url 'About' %}" class="menu-btn">About Us</a></li>
<li><a href="{% url 'Contact' %}" class="menu-btn">Contact Us</a></li>
<li><a href="{% url 'Login' %}" class="menu-btn">Login</a></li>
</ul>
<div class="menu-btn">
<i class="fas fa-bars"></i>
</div>
</div>
</nav>
<div class="buy_success">
<div class="buy_success-content">
<h2>Thank you for shopping with us!</h2>
<h3>Your Car has been booked and will be delivered to your given address.</h3>
<h3>Here are the booking details</h3>
<div class="booking">
<div class="customer">
<h2><span>Name:</span> Swastik Raj Singh</h2>
<h2><span>Mobile:</span> 7760484255</h2>
<h2><span>Email:</span> [email protected]</h2>
<h2><span>Address:</span> Bangalore</h2>
</div>
<div class="booking_details">
<h2><span>Booking ID:</span> jh12g3jhved3vh2</h2>
<h2><span>Amount Paid:</span> 10 Lakh</h2>
<!-- <h2><span>Booking Date and Time:</span> </h2> -->
<h2><span>Car Brand:</span> RENAULT</h2>
<h2><span>Car Model:</span> DUSTER</h2>
<h2><span>Car Color:</span> Royal Blue</h2>
</div>
</div>
<div class="backtohome">
<a href="{% url 'Home Page' %}">Continue Shopping</a>
</div>
</div>
</div>
<footer>
<span>Design By <a href="https://www.linkedin.com/in/swastik-raj-singh-80ba881b8/">Swastik -
Subhassini</a>
| <span class="far fa-copyright"></span> 2022 All rights
reserved.</span>
</footer>
</div>
<script src="{% static '/js/script.js' %}"></script>
</body>
</html>