Files
IncomeTaxSystem/templates/welcome.html
2025-09-18 11:33:28 +05:30

56 lines
1.4 KiB
HTML

<!-- templates/welcome.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Welcome - Laxmi Civil Engineering Pvt. Ltd</title>
<link rel="stylesheet" href="{{ url_for('static', filename='index.css') }}">
<style>
body {
background-color: #e8f0fe;
font-family: Arial, sans-serif;
text-align: center;
padding: 100px;
}
.logo {
width: 100px;
height: 100px;
}
h1 {
color: #333;
margin-top: 20px;
}
p {
font-size: 18px;
margin: 20px 0;
}
.enter-btn {
background-color: #007BFF;
color: white;
padding: 12px 25px;
font-size: 18px;
border: none;
border-radius: 6px;
cursor: pointer;
text-decoration: none;
}
.enter-btn:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<img src="https://tse1.mm.bing.net/th/id/OIP.fc5NZer25Y3YeS3Fd0PO9gAAAA?pid=Api&rs=1&c=1&qlt=95&w=92&h=92" class="logo" alt="Company Logo">
<h1>Welcome to Laxmi Civil Engineering Pvt. Ltd</h1>
<p>Income Tax Filing and Compliance</p>
<a href="{{ url_for('index') }}" class="enter-btn">Go To Dashboard</a>
</body>
</html>