-
Notifications
You must be signed in to change notification settings - Fork 3
/
cancel.html
81 lines (73 loc) · 3.08 KB
/
cancel.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
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Cancellation Page</title>
<link rel="stylesheet" href="cancel.css" />
<script src="https://kit.fontawesome.com/f8140cb9d1.js" crossorigin="anonymous"></script>
</head>
<body>
<nav class="relative">
<div class="navbar">
<div class="nav-items">
<img class="logo" src="img/logo.png" alt="app-logo" height="75px" />
<a class="item" href="">Check Status</a>
<a class="item" href="">Cancel Train</a>
<a class="item" href="">Contact Us</a>
<a class="login-btn btn" href="login.html">Login</a>
<a class="register-btn btn" href="register.html">Register</a>
</div>
</div>
</nav>
<form id="cancel-ticket">
<h1 id="cancel-heading"><i class="fa-solid fa-xmark fa-beat"></i> Cancellation Form</h1>
<p>Please fill the required details</p>
<div class="line"></div>
<fieldset>
<label for="trainid">Train Number: </label>
<input id="trainid" name="trainid" type="text" placeholder="Enter train number" required />
<label for="seatno">Seat Number: </label>
<input id="seatno" name="seatno" type="text" placeholder="Enter seat number" required />
<label for="class">Train Class</label>
<input id="class" name="class" type="text" placeholder="Enter train class" required />
</fieldset>
<div class="btn-config">
<button class="btn-prop" id="submit" type="button">Submit</button>
</div>
</form>
<script src="./cancel.js" type="module"></script>
</body>
<footer>
<div class="footer-container">
<div class="flex">
<div class="flex">
<a class="footer-item">About Us</a>
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" fill="currentColor" class="bi bi-circle-fill" viewBox="0 0 16 16">
<circle cx="8" cy="8" r="8"/>
</svg>
</div>
<div class="flex">
<a class="footer-item">Policies</a>
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" fill="currentColor" class="bi bi-circle-fill" viewBox="0 0 16 16">
<circle cx="8" cy="8" r="8"/>
</svg>
</div>
<div class="flex">
<a class="footer-item">Customer Care</a>
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" fill="currentColor" class="bi bi-circle-fill" viewBox="0 0 16 16">
<circle cx="8" cy="8" r="8"/>
</svg>
</div>
<div class="flex">
<a class="footer-item">Terms & Conditions</a>
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" fill="currentColor" class="bi bi-circle-fill" viewBox="0 0 16 16">
<circle cx="8" cy="8" r="8"/>
</svg>
</div>
<div class="flex">
<a class="footer-item">Enquiries</a>
</div>
</div>
</div>
</footer>
</html>