Skip to content

Commit 923062f

Browse files
authored
Merge pull request #20 from Xpirix/fix_email_and_profile_pages
Fix email and profile pages
2 parents da992f9 + 9853b21 commit 923062f

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

deployment/.env.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ VALID_DOMAIN=["localhost", "changelog.qgis.org", "staging.changelog.qgis.org"]
5050
# Email
5151
EMAIL_BACKEND='django.core.mail.backends.smtp.EmailBackend'
5252
EMAIL_HOST='smtp.resend.com'
53-
EMAIL_PORT=465
53+
EMAIL_PORT=587
5454
EMAIL_USE_TLS=True
5555
EMAIL_HOST_USER="resend" # e.g., no-reply@yourdomain.com
5656
EMAIL_HOST_PASSWORD="your_resend_api_key" # Your Resend API key

django_project/core/base_templates/account/email.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base_with_sidebar.html" %}
1+
{% extends "base.html" %}
22

33
{% load i18n %}
44
{% load account socialaccount %}

django_project/core/base_templates/account/email_confirm.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base_with_sidebar.html" %}
1+
{% extends "base.html" %}
22

33
{% load i18n %}
44
{% load account socialaccount %}

django_project/core/base_templates/account/login.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base_with_sidebar.html" %}
1+
{% extends "base.html" %}
22

33
{% load i18n %}
44
{% load account socialaccount %}

django_project/core/base_templates/account/logout.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base_with_sidebar.html" %}
1+
{% extends "base.html" %}
22

33
{% load i18n %}
44
{% load account socialaccount %}

django_project/core/base_templates/account/password_reset.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base_with_sidebar.html" %}
1+
{% extends "base.html" %}
22

33
{% load i18n %}
44
{% load account socialaccount %}

django_project/core/base_templates/account/password_reset_done.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base_with_sidebar.html" %}
1+
{% extends "base.html" %}
22

33
{% load i18n %}
44
{% load static %}

django_project/core/base_templates/account/password_reset_from_key.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base_with_sidebar.html" %}
1+
{% extends "base.html" %}
22

33
{% load i18n %}
44
{% load account socialaccount %}

django_project/core/base_templates/account/password_reset_from_key_done.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base_with_sidebar.html" %}
1+
{% extends "base.html" %}
22

33
{% load i18n %}
44
{% load account socialaccount %}

django_project/core/base_templates/account/signup.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% extends "base_with_sidebar.html" %}
1+
{% extends "base.html" %}
22

33
{% load i18n %}
44
{% load account socialaccount crispy_forms_tags %}

0 commit comments

Comments
 (0)