Advertisement
Guest User

Untitled

a guest
Jan 13th, 2019
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. {% extends 'base.html.twig' %}
  2.  
  3. {% block body %}
  4. <div style="margin-top:10px;margin-right:10px;padding:15px;" class="card text-white bg-dark">
  5. <h1 class="card-header">Login</h1>
  6.  
  7. <form action="{{ path('security_login') }}" method="post">
  8. <div class="form-group">
  9. <h2>User:</h2>
  10. <input placeholder="Username..." required name="_username" type="text" class="form-control">
  11. </div>
  12. <div class="form-group">
  13. <h2>Password:</h2>
  14. <input placeholder="Mot de passe..." required name="_password" type="password" class="form-control">
  15. </div>
  16. <div class="form-group">
  17. <button type="submit" class="btn btn-success">Connexion !</button>
  18. </div>
  19. <h3> Verifier de bien rentrer vos informations!</h3>
  20. </form>
  21. </div>
  22.  
  23. {% endblock %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement