Guest User

Untitled

a guest
Jan 23rd, 2019
79
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 title %}Hello!{% endblock %}
  4.  
  5. {% block body %}
  6. <style>
  7. .example-wrapper { margin: 1em auto; max-width: 800px; width: 95%; font: 18px/1.5 sans-serif; }
  8. .example-wrapper code { background: #F5F5F5; padding: 2px 6px; }
  9. .error {color: red}
  10. </style>
  11.  
  12. <div class="example-wrapper">
  13.  
  14. <h1>Login page!</h1>
  15.  
  16. {% if app.user %}
  17. <a href="{{ path('logout') }}">logout</a>
  18. {% else %}
  19. {% if error %}
  20. <span class="error">{{ error.messageKey }}</span>
  21. {% endif %}
  22.  
  23. <form action="{{ path('login') }}" method="post">
  24. <input type="text" name="_username" value="{{ last_username }}" placeholder="Username here ...">
  25. <input type="password" name="_password">
  26. <button type="submit">login</button>
  27. </form>
  28. {% endif %}
  29. </div>
  30. {% endblock %}
Add Comment
Please, Sign In to add comment