Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. <div id="right_column">
  2. <form id="LoginForm" action="" method="post">
  3. {% csrf_token %}
  4. <ul id="login_list">
  5. <li> <label for="id_log_username" class="label2">Użytkownik:</label> <br/>
  6. <input id="id_log_username" type="text" name="log_username" maxlength="40" class="input2"/> </li>
  7.  
  8. <li> <label for="id_password" class="label2">Hasło:</label> <br/>
  9. <input id="id_password" type="password" name="password" maxlength="40" class="input2"/> </li>
  10. <li> <br/> <input name="B" type="submit" value="Zaloguj" maxlength="30" class="submit2" /> </li>
  11. </ul>
  12.  
  13. {% if form.errors %}
  14. <ul class="errorlist">
  15. <li>You entered an invalid username or password.</li>
  16. </ul>
  17. <br />
  18. {% endif %}
  19. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement