98 lines
2.0 KiB
HTML
98 lines
2.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>GST Reconciliation</title>
|
|
<style>
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
background: #f0f4f8;
|
|
margin: 0;
|
|
padding: 0;
|
|
display: flex;
|
|
height: 100vh;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.container {
|
|
background: #ffffff;
|
|
padding: 30px 40px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
|
|
text-align: center;
|
|
width: 400px;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.header img {
|
|
width: 80px;
|
|
height: auto;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.header h1 {
|
|
font-size: 20px;
|
|
margin: 0;
|
|
color: #007bff;
|
|
font-weight: 600;
|
|
}
|
|
|
|
h2 {
|
|
margin-bottom: 20px;
|
|
color: #333333;
|
|
}
|
|
|
|
input[type="file"] {
|
|
padding: 8px;
|
|
margin-bottom: 20px;
|
|
border: 1px solid #cccccc;
|
|
border-radius: 5px;
|
|
background-color: #fafafa;
|
|
cursor: pointer;
|
|
}
|
|
|
|
button {
|
|
padding: 10px 20px;
|
|
background-color: #007bff;
|
|
color: #ffffff;
|
|
border: none;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<img src="{{ url_for('static', filename='new_logo.jpg') }}" alt="Laxmi Civil Engineering Logo" height="60">
|
|
|
|
<h1>Laxmi Civil Engineering Services Pvt. Ltd.</h1>
|
|
</div>
|
|
<h2>Upload GST Excel File</h2>
|
|
<form action="/upload" method="post" enctype="multipart/form-data">
|
|
<input type="file" name="excel_file" accept=".xlsx" required>
|
|
<button type="submit">Upload and Compare</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|