This commit is contained in:
Dominic DiTaranto 2025-11-17 09:31:12 -05:00
parent 6acc065c0f
commit e638513fdb
5 changed files with 6 additions and 1 deletions

BIN
assets/img/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -1,5 +1,7 @@
from django.contrib import admin
from django.urls import path, include
from django.contrib.staticfiles.storage import staticfiles_storage
from django.views.generic.base import RedirectView
from web.views import (
signup,

BIN
static/img/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -5,6 +5,9 @@
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Christians of the Internet</title>
<link rel="shortcut icon"
type="image/png"
href="{% static 'img/favicon.ico' %}" />
{% block head %}{% endblock %}
</head>
<body>

View file

@ -63,7 +63,7 @@ def signup(request):
send_email(
subject='New User Sign Up Alert',
message=f'A new user has signed up for the webring, please review the user in the admin portal! \n\n ID: {user.id}, EMAIL: {user.email}, USERNAME: {user.username}'
message=f'A new user has signed up for the webring, please review the user in the admin portal! \n\n ID: {user.id}, EMAIL: {user.email}, USERNAME: {user.username} \n\n https://members.christian-webring.org/accounts/user_management/ '
)
send_email(