42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
{% extends "layout.html" %}
|
|
|
|
{% block content %}
|
|
<div class="auth-container">
|
|
<h1>Login to TimeTrack</h1>
|
|
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
|
{% if messages %}
|
|
{% for category, message in messages %}
|
|
<div class="alert alert-{{ category }}">{{ message }}</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% endwith %}
|
|
|
|
<form method="POST" action="{{ url_for('login') }}" class="auth-form">
|
|
<div class="form-group">
|
|
<label for="username">Username</label>
|
|
<input type="text" id="username" name="username" class="form-control" required autofocus>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" class="form-control" required>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label class="checkbox-container">
|
|
<input type="checkbox" name="remember"> Remember me
|
|
<span class="checkmark"></span>
|
|
</label>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<button type="submit" class="btn btn-primary">Login</button>
|
|
</div>
|
|
|
|
<div class="auth-links">
|
|
<p>Don't have an account? <a href="{{ url_for('register') }}">Register here</a></p>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock %} |