-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (100 loc) · 2.58 KB
/
index.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
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<title>Courier Management System</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"> <!-- Font Awesome CDN for icons -->
<style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #f1f1f1;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.track-input {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 50px;
}
.track-input input[type="text"] {
padding: 15px;
width: 400px;
font-size: 18px;
border: none;
border-radius: 30px;
outline: none;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
transition: box-shadow 0.3s ease-in-out;
}
.track-input input[type="text"]:focus {
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.track-input button {
margin-left: 10px;
padding: 15px 30px;
font-size: 18px;
border: none;
border-radius: 30px;
background-color: black;
color: #fff;
cursor: pointer;
transition: background-color 0.3s ease-in-out;
}
.track-input button:hover {
background-color: #005cbf;
}
.logo {
font-size: 48px;
color: black;
margin-bottom: 30px;
}
.description {
font-size: 20px;
color: #555;
text-align: center;
max-width: 600px;
margin-bottom: 50px;
}
.login-button {
position: absolute;
top: 10px;
right: 10px;
padding: 10px 20px;
font-size: 16px;
border: none;
border-radius: 5px;
background-color: black;
color: #fff;
cursor: pointer;
}
.login-button:hover {
background-color: #005cbf;
transform: scale(1.05);
}
a{
color: white;
text-decoration: none;
}
</style>
</head>
<body>
<div class="container">
<button class="login-button"><a href="login.html">Login</a> </button>
<h1 class="logo"><i class="fas fa-shipping-fast"></i> Courier Management System</h1>
<p class="description">Track your courier delivery by entering the tracking ID below:</p>
<div class="track-input">
<form action="ShippmentStatus.php" method="POST">
<input type="text" name= "track_id"placeholder="Enter track ID" required>
<button type="submit">Track</button>
</form>
</div>
</div>
</body>
</html>