project/templates/user/login.html
author primal primal007@gmail.com
Wed, 14 Sep 2011 16:09:47 +0530
branch2011
changeset 396 c4b236ea6912
parent 118 78dfa383f6a3
permissions -rw-r--r--
Edited the login page

{% extends "base.html" %}

{% block title %}Login or Register{% endblock %}

{% block content %}
<h1>Login or Register</h1>

    <div class="login">
        <h2 class="authenticate">Login</h2>

        <div class="description">
          Log in for registered users of the site.
        </div>

        <form class="authenticate"
              enctype="multipart/form-data"
              action="{% url scipycon_login params.scope %}"
              method="post">

          <table class="scipycon-default">
            {{ login_form }}
            <tr>
              <td></td>
              <td>
                <a href="{% url scipycon_password_reset %}">
                  Forgot password?
                </a>
              </td>
            </tr>
          </table>

          <input type="hidden" name="action" value="login" />

          <input type="hidden" name="next" value="{{ next_url }}" />

          <button class="button left" type="submit">Login</button>

        </form>
    </div>



    <div class="register">
        <h2 class="authenticate">Register</h2>

        <div class="description">
            If you are not already a member of the site you can register here.
        </div>

        <form action="{% url scipycon_login params.scope %}" method="post">
          <table class="scipycon-default">
            {{ register_form }}
          </table>

          <input type="hidden" name="action" value="register" />

          <input type="hidden" name="next" value="{{ next_url }}" />

          <button class="button left" type="submit">Register</button>
        </form>
    </div>
{% endblock content %}