Implemented FOS bundle

This commit is contained in:
Kevin Frantz
2018-09-13 02:24:25 +02:00
parent 777b4aee61
commit 629ed13c51
46 changed files with 451 additions and 202 deletions

View File

@@ -1,25 +0,0 @@
{% extends "frames/default.html.twig" %}
{% block title %}
{% trans %}login{% endtrans %}
{% endblock %}
{% block content %}
<h1>
{% trans %}login{% endtrans %}
</h1>
<form action={{ path('login') }} method="post">
<div class="form-group">
<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 %}'">
</div>
<div class="form-group">
<label for="password">{% trans %}Password{% endtrans %}</label> <input
type="password" name="_password" class="form-control" id="password"
placeholder="{% trans %}Password{% endtrans %}">
</div>
<button type="submit" class="btn btn-primary">
{% trans %}Submit{% endtrans %}
</button>
</form>
{% endblock %}