-
Notifications
You must be signed in to change notification settings - Fork 1
/
Busform.html
104 lines (92 loc) · 2.8 KB
/
Busform.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!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>Bus Route Information</title>
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/light.css">
<style>
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #fff; /* White background */
color: #000; /* Black text */
margin: 0;
padding: 0;
}
.Page {
height: 297mm;
width: 210mm;
border: 3px solid #000; /* Black border */
margin: 0 auto;
padding: 20px;
background-color: #fff; /* White background */
}
.logo {
text-align: center;
}
.logo img {
width: 100px;
}
h3 {
text-align: center;
}
.secondbox {
font-size: 12px;
margin-top: 20px;
}
label {
font-weight: bold;
}
input[type="text"] {
width: 100%;
padding: 5px;
margin: 5px 0;
}
button {
background-color: #000; /* Black background */
color: #fff; /* White text */
padding: 10px 20px;
border: none;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background-color: #444; /* Darker shade of black */
}
</style>
</head>
<body>
<div class="Page">
<div class="logo">
<img src="Logo.png" alt="Logo">
</div>
<h3>Bus and Train Information</h3>
<form action="process-newform.php" method="POST" class="secondbox">
<label>Bus_id</label>
<input type="text" id="Code" name="Bus_id">
<label>Train_id</label>
<input type="text" id="GSL" name="Train_id">
<label>Train_Name</label>
<input type="text" id="PDL" name="Train_Name">
<label>Bus_Name</label>
<input type="text" id="WS" name="Bus_Name">
<label>Date</label>
<input type="text" id="RC" name="Date">
<label>Time</label>
<input type="text" id="RC" name="Time">
<label>No_of_Seats</label>
<input type="text" id="EC" name="No_of_Seats">
<label>From</label>
<input type="text" id="EC" name="From_W">
<label>To</label>
<input type="text" id="EC" name="To_W">
<button>Submit</button>
</form>
</div>
<form action="shedule.php">
<button>View Schedules</button>
</form>
</body>
</html>