2018-09-05 11:20:40 +02:00
|
|
|
{% extends "frames/default.html.twig" %}
|
|
|
|
{% block title %}
|
2018-09-06 16:46:33 +02:00
|
|
|
{% trans %}login{% endtrans %}
|
2018-09-05 11:20:40 +02:00
|
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
2018-09-06 16:46:33 +02:00
|
|
|
<h1>
|
|
|
|
{% trans %}login{% endtrans %}
|
|
|
|
</h1>
|
|
|
|
<form method={{ path('login') }}>
|
2018-09-05 11:20:40 +02:00
|
|
|
<div class="form-group">
|
2018-09-06 16:46:33 +02:00
|
|
|
<label for="username">{% trans %}Username{% endtrans %}</label> <input
|
|
|
|
type="username" name="username" class="form-control" id="username"
|
|
|
|
aria-describedby="usernameHelp"
|
|
|
|
placeholder="{% trans %}Enter username{% endtrans %}'">
|
2018-09-05 11:20:40 +02:00
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
2018-09-06 16:46:33 +02:00
|
|
|
<label for="password">{% trans %}Password{% endtrans %}</label> <input
|
|
|
|
type="password" name="password" class="form-control" id="password"
|
|
|
|
placeholder="{% trans %}Password{% endtrans %}">
|
2018-09-05 11:20:40 +02:00
|
|
|
</div>
|
2018-09-06 16:46:33 +02:00
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
{% trans %}Submit{% endtrans %}
|
|
|
|
</button>
|
2018-09-05 11:20:40 +02:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|