Advertisement
Guest User

Untitled

a guest
May 11th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. {% extends "common/base_site.html" %}
  2. {% load i18n %}
  3.  
  4. {% block extrastyle %}
  5. {% load adminmedia %}
  6. {{ block.super }}
  7. <link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/login.css" />
  8. {% endblock %}
  9.  
  10. {% block bodyclass %}login{% endblock %}
  11.  
  12. {% block content_title %}{% endblock %}
  13.  
  14. {% block breadcrumbs %}{% endblock %}
  15.  
  16. {% block content %}
  17. {% if error_message %}
  18. <p class="errornote">{{ error_message }}</p>
  19. {% endif %}
  20. <body class="login">
  21. <div id="content-main">
  22. <form action="/agroerp/autentificar/" method="post" id="login-form">
  23. <div class="form-row">
  24. <label for="id_username">{% trans 'Username:' %}</label> <input type="text" name="username" id="id_username" />
  25. </div>
  26. <div class="form-row">
  27. <label for="id_password">{% trans 'Password:' %}</label> <input type="password" name="password" id="id_password" />
  28. <input type="hidden" name="this_is_the_login_form" value="1" />
  29. </div>
  30.  
  31. <p align="center"><label>&nbsp;</label><input type="submit" class="default" value="{% trans 'Log in' %}" /></p>
  32.  
  33. </form>
  34.  
  35. <script type="text/javascript">
  36. document.getElementById('id_username').focus()
  37. </script>
  38. </div>
  39. </body>
  40. {%endblock%}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement