Guest User

Untitled

a guest
Oct 14th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. {% extends 'KnoodleBundle::layout.html.twig' %}
  2.  
  3. {% block content %}
  4. {% if error %}
  5. <div>{{ error.message }}</div>
  6. {% endif %}
  7.  
  8. <form action="{{ path('knoodle_login_check') }}" method="post">
  9. <div>
  10. <label for="username">Username:</label>
  11. <input type="text" id="username" name="_username" value="{{ last_username }}" />
  12. </div>
  13.  
  14. <div>
  15. <label for="password">Password:</label>
  16. <input type="password" id="password" name="_password" />
  17. </div>
  18. <button type="submit">login</button>
  19. </form>
  20. {% endblock %}
Add Comment
Please, Sign In to add comment