【发布时间】:2020-10-06 16:36:45
【问题描述】:
密码重置链接未显示 密码重置的控制台输出 您好,有人要求重置电子邮件的密码 地址root@gmail.com,点击以下链接:http://127.0.0.1:8000{%url 'password_reset_confirm' uidb64=uid token=token %}
HTML 文件
password_reset.html
<form action="" method="POST">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="send password reset email" name="submit" />
</form>
password_reset_email.html
Hi there, Someone asked for a password reset for the email
address {{ email }}, Follow the link below: {{ protocol }}://
{{ domain}} {% url'password_reset_confirm' uidb64=uid token=token %}
password_reset_confirm.html
<div>
{% if validlink %}
<h2>change password for 0{{ form.user.username }}</h2>
<form action="" method="POST" novalidate>
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="changepassword" name="submit" />
</form>
{% else %}
<h3>Reset your password</h3>
<p>it looks like you clicked on an invalid passowrd reset link try again</p>
<a href="{% url 'password_reset' %}">Request</a>
{% endif %}
</div>
settings.py
EMAIL_BACKEND = "django.core.mail.backends.console.EmailBackend"
acounts/urls.py
path("accounts/", include("django.contrib.auth.urls")),
【问题讨论】:
-
您能否编辑您的问题以显示发送电子邮件的 Python 代码?
标签: django