Spaces:
No application file
No application file
| {% 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 %} | |