emile 1 year ago
parent 8ccf556bcf
commit 624add796c

@ -46,7 +46,7 @@
<h2>Reset your account password at Ositcom</h2>
<p>Hello {{ user.first_name }},</p>
<p>You recently requested to reset your password for your account. Click the button below to reset it.</p>
<p><a class="btn"href="{{ reset_link }}">>Reset Password</a></p>
<p><a class="btn"href="{{ reset_link }}">Reset Password</a></p>
<p>If you did not request a password reset, please ignore this email. Your account is safe, don't worry.</p>
<p>Regards,<br>The Ositcom Team</p>
</div>

@ -28,7 +28,7 @@ urlpatterns = [
path('activate/<uidb64>/<token>/', views.activate, name='activate'),
path('confirmation-sent/', views.confirmation_sent, name='activation_sent'),
path('forgot-password/', views.forgot_password, name='forgot-password'),
path('reset-password/<uidb64>/<token>/', views.forgot_password, name='forgot-password'),
path('reset-password/<uidb64>/<token>/', views.reset_password, name='forgot-password'),
path('go_online/', views.go_online, name='go_online'),

Loading…
Cancel
Save