24 lines
633 B
Twig
24 lines
633 B
Twig
{% extends '@novaconium/master.html.twig' %}
|
|
|
|
{% block content %}
|
|
<h1>{{title}}</h1>
|
|
|
|
|
|
<div id="login_form">
|
|
|
|
<form method="post" action="/novaconium/login">
|
|
<input type="hidden" name="token" value="{{ token }}" />
|
|
|
|
<label for="username">Username:</label><br>
|
|
<input type="text" id="username" name="username" required><br><br>
|
|
|
|
<label for="password">Password:</label><br>
|
|
<input type="password" id="password" name="password" required><br><br>
|
|
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|