30 lines
954 B
HTML
30 lines
954 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>LCEPL Income Tax</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/login.css') }}">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="login-container">
|
|
<h1 class="title">Laxmi Civil Engineering Services</h1>
|
|
<h2 class="sub-title">Income Tax Software</h2>
|
|
<h4 class="subtitle">LOGIN</h4>
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %} {% if
|
|
messages %} {% for category, message in messages %}
|
|
<div class="flash flash-{{ category }}">{{ message }}</div>
|
|
{% endfor %} {% endif %} {% endwith %}
|
|
|
|
<form method="post">
|
|
<input type="text" name="username" placeholder="Username" required />
|
|
<input type="password" name="password" placeholder="Password" required />
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |