Files
noteapp/app/templates/login.html
Nicolay Braetter 5c7ce5d0ca Initial commit: Notes Manager App (notes.braetter-int.de)
- Python/Flask Backend
- SQLAlchemy Models (notes, tasks, templates, users)
- Gunicorn + Nginx Deploy-Konfiguration
- Static Assets (CSS/JS)
- Jinja2 Templates
2026-04-15 09:28:33 +02:00

27 lines
1.2 KiB
HTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends 'base.html' %}
{% block title %}Anmelden NotesManager{% endblock %}
{% block content %}
<div class="login-wrapper">
<div class="login-card">
<div class="card">
<div class="card-body p-4 p-sm-5">
<div class="login-logo" aria-hidden="true">N</div>
<h1 class="h4 text-center mb-1">NotesManager</h1>
<p class="text-muted text-center small mb-4">Bitte melde dich an, um fortzufahren.</p>
<form method="post" novalidate>
<div class="mb-3">
<label for="username" class="form-label">Benutzername</label>
<input id="username" name="username" class="form-control" autocomplete="username" required autofocus>
</div>
<div class="mb-4">
<label for="password" class="form-label">Passwort</label>
<input id="password" name="password" type="password" class="form-control" autocomplete="current-password" required>
</div>
<button class="btn btn-primary w-100" type="submit">Anmelden</button>
</form>
</div>
</div>
</div>
</div>
{% endblock %}