McDoPlus/templates/user/login.html.twig
2023-11-21 22:02:38 +01:00

23 lines
844 B
Twig

{% extends 'base.html.twig' %}
{% block title %}User{% endblock %}
{% block body %}
<div class="center">
<h1>Login !</h1>
<article>
<form action=" {{ path('app_user_login') }}" method="post">
<div class="form-group">
<label for="username" class="form-label mt-4">Adresse email</label>
<input type="email" class="form-controle" id="username" name="_username" placeholder="exemple@exostflash.ovh">
</div>
<div class="form-group">
<label for="password" class="form-label mt-4">Mot de passe</label>
<input type="password" class="form-controle" id="password" name="_password" placeholder="********">
</div>
<button type="submit" class="btn btn-primary">Login</button>
</article>
</div>
{% endblock %}