LMS / templates /login.html
Faizur Rahman Zunayed
Initial commit: Library Management System
58668c3
raw
history blame contribute delete
683 Bytes
{% extends "base.html" %}
{% block title %}Login - LMS{% endblock %}
{% block content %}
<div class="card" style="max-width: 400px; margin: 4rem auto;">
<h2 style="text-align: center; margin-bottom: 2rem;">๐Ÿ“š Library Login</h2>
<form method="POST">
<label>Email:</label>
<input type="email" name="email" required>
<label>Password:</label>
<input type="password" name="password" required>
<button type="submit" class="btn" style="width: 100%;">Login</button>
</form>
<p style="margin-top: 1rem; text-align: center; color: #7f8c8d;">
Default: admin@lms.com / admin123
</p>
</div>
{% endblock %}