diff --git a/backend/app/main.py b/backend/app/main.py index da291d3..daff60f 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -311,7 +311,7 @@ async def lifespan(app: FastAPI): app = FastAPI( - title="PedQuiz", + title="PedsHub", description="Pediatric Knowledge Quiz Platform", version="2.0.0", lifespan=lifespan, diff --git a/backend/app/services/email_service.py b/backend/app/services/email_service.py index ecb7d12..3ba6d6e 100644 --- a/backend/app/services/email_service.py +++ b/backend/app/services/email_service.py @@ -14,7 +14,7 @@ def get_mail_config() -> ConnectionConfig: MAIL_USERNAME=settings.MAIL_USERNAME, MAIL_PASSWORD=settings.MAIL_PASSWORD, MAIL_FROM=settings.MAIL_FROM, - MAIL_FROM_NAME="PedQuiz", + MAIL_FROM_NAME="PedsHub", MAIL_PORT=settings.MAIL_PORT, MAIL_SERVER=settings.MAIL_SERVER, MAIL_STARTTLS=settings.MAIL_STARTTLS, @@ -73,7 +73,7 @@ def _wrap(subject: str, body_md: str) -> str:
- PedQuiz · Pediatric Knowledge Platform
+ PedsHub · Pediatric Knowledge Platform
{settings.APP_URL}
@@ -112,12 +112,12 @@ async def _send(to_email: str, subject: str, html: str): async def send_verification_email(to_email: str, name: str, token: str): url = f"{settings.APP_URL}/verify-email?token={token}" - subject = "Verify your PedQuiz email" + subject = "Verify your PedsHub email" md = f"""# Verify your email Hi **{name}**, -Welcome to PedQuiz. Click below to verify your email address and activate your account. +Welcome to PedsHub. Click below to verify your email address and activate your account. [button:Verify Email Address]({url}) @@ -132,7 +132,7 @@ Welcome to PedQuiz. Click below to verify your email address and activate your a async def send_password_reset_email(to_email: str, name: str, token: str): url = f"{settings.APP_URL}/reset-password?token={token}" - subject = "Reset your PedQuiz password" + subject = "Reset your PedsHub password" md = f"""# Reset your password Hi **{name}**, diff --git a/frontend/index.html b/frontend/index.html index df9e727..69d2545 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -3,8 +3,9 @@
-