72 lines
1.5 KiB
HTML
72 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Track Your Package</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Arial', sans-serif;
|
|
background-color: #1e1e1e;
|
|
color: #f1f1f1;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh;
|
|
}
|
|
|
|
.container {
|
|
background-color: #2c2c2c;
|
|
border-radius: 15px;
|
|
padding: 40px 60px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
|
|
width: 100%;
|
|
max-width: 600px;
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 36px;
|
|
color: #f1f1f1;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
input {
|
|
width: 100%;
|
|
padding: 12px;
|
|
margin: 10px 0;
|
|
border-radius: 8px;
|
|
border: none;
|
|
font-size: 16px;
|
|
}
|
|
|
|
button {
|
|
padding: 12px;
|
|
width: 100%;
|
|
background-color: #4caf50;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 10px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #45a049;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<h1>Metsamarja Vedu</h1>
|
|
<form action="/track" method="POST">
|
|
<input type="text" name="id" placeholder="Enter Package ID" required>
|
|
<button type="submit">Track Package</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|