daily pastebin goal
80%
SHARE
TWEET

Untitled

a guest Jan 29th, 2013 27 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2.      <head>
  3.        <title>Django Bookmarks - User Login</title>
  4.      </head>
  5.  
  6.     <body>
  7.        <h1>User Login</h1>
  8.        {% csrf_token %}
  9.        {% if form.errors %}
  10.          <p>Your username and password didn't match.
  11.            Please try again.</p>
  12.        {% endif %}
  13.        <form method="post" action=".">
  14.          <p><label for="id_username">Username:</label>
  15.            {{ form.username }}</p>
  16.          <p><label for="id_password">Password:</label>
  17.            {{ form.password }}</p>
  18.          <input type="hidden" name="next" value="/" />
  19.          <input type="submit" value="login" />
  20.        </form>
  21.     </body>
  22. </html>
RAW Paste Data
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand
 
Top