first commit
This commit is contained in:
12
views/login.twig
Normal file
12
views/login.twig
Normal file
@@ -0,0 +1,12 @@
|
||||
{% extends layout %}
|
||||
|
||||
{% block title %}Login{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<form method="POST" action="/login">
|
||||
<input type="text" name="username" placeholder="Benutzername" required>
|
||||
<input type="password" name="password" placeholder="Passwort" required>
|
||||
<input type="hidden" name="_csrf_token" value="{{ $csrf }}">
|
||||
<button type="submit">Einloggen</button>
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user