Initial commit: LeoCRM - Flask CRM with auth, companies, contacts
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<h2>Registrieren</h2>
|
||||
<form method="post">
|
||||
<label>Benutzername</label>
|
||||
<input type="text" name="username" required>
|
||||
<label>Passwort</label>
|
||||
<input type="password" name="password" required>
|
||||
<button type="submit" class="btn btn-primary">Registrieren</button>
|
||||
</form>
|
||||
<p style="margin-top:1rem;">Bereits registriert? <a href="{{ url_for('login') }}">Anmelden</a></p>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user