Remove unused module
This commit is contained in:
parent
d673ce311d
commit
79b7b2f8cd
3 changed files with 2 additions and 4 deletions
|
@ -77,6 +77,6 @@
|
|||
{% include "two_factor/_wizard_actions.html" %}
|
||||
</form>
|
||||
|
||||
<p><a href="{% url 'password_reset_recover' %}">Lost password?</a></p>
|
||||
<p><a href="{% url 'password_reset' %}">Lost password?</a></p>
|
||||
|
||||
{% endblock %}
|
||||
|
|
|
@ -28,7 +28,6 @@ INSTALLED_APPS = [
|
|||
'django_otp.plugins.otp_totp',
|
||||
'two_factor',
|
||||
'django_cron',
|
||||
'password_reset',
|
||||
'django.contrib.admin',
|
||||
'django.contrib.auth',
|
||||
'django.contrib.contenttypes',
|
||||
|
|
|
@ -13,6 +13,5 @@ urlpatterns = [
|
|||
url(r'', include(tf_urls)),
|
||||
path('', include('manager.urls')),
|
||||
path('admin/', admin.site.urls),
|
||||
path('accounts/', include('django.contrib.auth.urls')),
|
||||
url(r'', include('password_reset.urls'))
|
||||
path('accounts/', include('django.contrib.auth.urls'))
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue