且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使用django表单登录页面

更新时间:2023-12-01 15:48:22

在您的 urls.py 文件链接到内置的Django登录视图,并将路径传递给您想要的模板用作登录页面:

In your urls.py file link to the built in Django login view, and pass in the path to a template you wish to use as the login page:

(r'^login/$', 'django.contrib.auth.views.login', {
    'template_name': 'myapp/login.html'
}),

这里是一个示例,我的样子(从 Django docs ):

And here is an example of what the template my look like (from the Django docs):

{% extends "mybase.html" %}

{% block content %}

    {% if form.errors %}
        <p>Your username and password didn't match. Please try again.</p>
    {% endif %}

    <form method="post" action="{% url 'django.contrib.auth.views.login' %}">
        {% csrf_token %}
        <table>
            <tr>
                <td>{{ form.username.label_tag }}</td>
                <td>{{ form.username }}</td>
            </tr>
            <tr>
                <td>{{ form.password.label_tag }}</td>
                <td>{{ form.password }}</td>
            </tr>
       </table>

       <input type="submit" value="login" />
       <input type="hidden" name="next" value="{{ next }}" />
   </form>

{% endblock %}