diff --git a/euscanwww/djeuscan/templates/_base.html b/euscanwww/djeuscan/templates/_base.html index e2bcd44..052abd0 100644 --- a/euscanwww/djeuscan/templates/_base.html +++ b/euscanwww/djeuscan/templates/_base.html @@ -52,6 +52,15 @@
Your username and password didn't match. Please try again.
+ {% endif %} + + + +{% endblock %} diff --git a/euscanwww/djeuscan/templates/registration/logout.html b/euscanwww/djeuscan/templates/registration/logout.html new file mode 100644 index 0000000..03746d0 --- /dev/null +++ b/euscanwww/djeuscan/templates/registration/logout.html @@ -0,0 +1,13 @@ +{% extends "registration/_registration_base.html" %} +{% load i18n %} + +{% block content %} + +You're logged out."
+Redirect...
+ + + +{% endblock %} diff --git a/euscanwww/djeuscan/templates/registration/password_change_done.html b/euscanwww/djeuscan/templates/registration/password_change_done.html new file mode 100644 index 0000000..e223576 --- /dev/null +++ b/euscanwww/djeuscan/templates/registration/password_change_done.html @@ -0,0 +1,6 @@ +{% extends "registration/_registration_base.html" %} +{% block title %}Password changed{% endblock %} + +{% block content %} + Password successfully changed! +{% endblock %} diff --git a/euscanwww/djeuscan/templates/registration/password_change_form.html b/euscanwww/djeuscan/templates/registration/password_change_form.html new file mode 100644 index 0000000..3bb9bb8 --- /dev/null +++ b/euscanwww/djeuscan/templates/registration/password_change_form.html @@ -0,0 +1,16 @@ +{% extends "registration/_registration_base.html" %} +{% block title %}Change password{% endblock %} + +{% block content %} + +{% endblock %} diff --git a/euscanwww/djeuscan/templates/registration/password_reset_complete.html b/euscanwww/djeuscan/templates/registration/password_reset_complete.html new file mode 100644 index 0000000..932dabf --- /dev/null +++ b/euscanwww/djeuscan/templates/registration/password_reset_complete.html @@ -0,0 +1,7 @@ +{% extends "registration/_registration_base.html" %} + +{% block title %}Password reset complete{% endblock %} + +{% block content %} + Your password has been reset! You may now log in. +{% endblock %} diff --git a/euscanwww/djeuscan/templates/registration/password_reset_confirm.html b/euscanwww/djeuscan/templates/registration/password_reset_confirm.html new file mode 100644 index 0000000..653319b --- /dev/null +++ b/euscanwww/djeuscan/templates/registration/password_reset_confirm.html @@ -0,0 +1,15 @@ +{% extends "registration/_registration_base.html" %} +{% block title %}Confirm password reset{% endblock %} + +{% block content %} + Enter your new password below to reset your password: + +{% endblock %} diff --git a/euscanwww/djeuscan/templates/registration/password_reset_done.html b/euscanwww/djeuscan/templates/registration/password_reset_done.html new file mode 100644 index 0000000..a263a5f --- /dev/null +++ b/euscanwww/djeuscan/templates/registration/password_reset_done.html @@ -0,0 +1,10 @@ +{% extends "registration/_registration_base.html" %} + +{% block title %}Password reset{% endblock %} + +{% block content %} ++ We have sent you an email with a link to reset your password. Please check + your email and click the link to continue. +
+{% endblock %} diff --git a/euscanwww/djeuscan/templates/registration/password_reset_email.html b/euscanwww/djeuscan/templates/registration/password_reset_email.html new file mode 100644 index 0000000..54fefff --- /dev/null +++ b/euscanwww/djeuscan/templates/registration/password_reset_email.html @@ -0,0 +1,16 @@ +Greetings {% if user.get_full_name %}{{ user.get_full_name }}{% else %}{{ user }}{% endif %}, + +You are receiving this email because you (or someone pretending to be you) +requested that your password be reset on the {{ domain }} site. If you do not +wish to reset your password, please ignore this message. + +To reset your password, please click the following link, or copy and paste it +into your web browser: + +{{ protocol }}://{{ domain }}{% url auth_password_reset_confirm uid token %} + +Your username, in case you've forgotten: {{ user.username }} + + +Best regards, +{{ site_name }} Management diff --git a/euscanwww/djeuscan/templates/registration/password_reset_form.html b/euscanwww/djeuscan/templates/registration/password_reset_form.html new file mode 100644 index 0000000..ae5c25b --- /dev/null +++ b/euscanwww/djeuscan/templates/registration/password_reset_form.html @@ -0,0 +1,18 @@ +{% extends "registration/_registration_base.html" %} + +{% block title %}Reset password{% endblock %} + +{% block content %} + Forgot your password? Enter your email in the form below and we'll send you + instructions for creating a new one. + + +{% endblock %} diff --git a/euscanwww/djeuscan/templates/registration/registration_complete.html b/euscanwww/djeuscan/templates/registration/registration_complete.html new file mode 100644 index 0000000..ae8dfcb --- /dev/null +++ b/euscanwww/djeuscan/templates/registration/registration_complete.html @@ -0,0 +1,6 @@ +{% extends "registration/_registration_base.html" %} +{% block title %}Activation email sent{% endblock %} + +{% block content %} + An activation email has been sent. Please check your email and click on the link to activate your account. +{% endblock %} diff --git a/euscanwww/djeuscan/templates/registration/registration_form.html b/euscanwww/djeuscan/templates/registration/registration_form.html new file mode 100644 index 0000000..c9ae8e4 --- /dev/null +++ b/euscanwww/djeuscan/templates/registration/registration_form.html @@ -0,0 +1,19 @@ +{% extends "registration/_registration_base.html" %} + +{% block title %} + Register for an account +{% endblock %} + +{% block content %} +