-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorderp.html
72 lines (66 loc) · 2.61 KB
/
orderp.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="modal.css">
<title>Document</title>
</head>
<body>
<nav>
<img src="./assets/images/logotwilight.png">
<ul>
<li><a href="indexp.html">Home</a></li>
<li><a href="about.html">Books</a></li>
<li><a href="registration.html">Register/Login</a></li>
<li><a href="orderp.html">Order Now</a></li>
</ul>
</nav>
<h2>Order a book here</h2>
<div class="input_container">
<form name="formOrder" id="formOrder">
<div class="input-row">
<label for="fullName">Full name</label>
<input type="text" id="fullName" name="fullname" placeholder="Enter your full name">
<span id="fullnamespn"></span>
</div>
<div class="input-row">
<label for="Email">Email</label>
<input type="email" id="email" name="email" placeholder="Email">
<span id="emailspn"></span>
</div>
<div class="input-row">
<label for="Phone No">Phone no</label>
<input type="text" id="phone" name="phone" placeholder="Phone no">
<span id="phonespn"></span>
</div>
<div class="input-row">
<label for="Book Title">Book Title</label>
<input type="text" id="book" name="book" placeholder="Book title">
<span id="bookspn"></spn>
</div>
<div class="input-row">
<label for="Description">Description of your order</label>
<textarea id="description" name="description"></textarea>
<span id="descriptionSpn"></span>
</div>
<div class="input-row">
<button id="submitBtn">Submit Order</button>
</div>
</form>
</div>
<div id="thankYouModal" class="modal">
<div class="modal-content">
<span class="close" id="closeModal">×</span>
<h2>Thank You!</h2>
<p>Thank you for your order! We appreciate it.</p>
</div>
</div>
<footer>
<span>© <span id="currentYear"></span> Book Store. All rights reserved.</span>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.7.1/jquery.min.js" integrity="sha512-v2CJ7UaYy4JwqLDIrZUI/4hqeoQieOmAZNXBeQyjo21dadnwR+8ZaIJVT8EE2iyI61OV8e6M8PP2/4hpQINQ/g==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script src="script1.js"></script>
</body>
</html>