diff --git a/backend/service/teams/create_user.py b/backend/service/teams/create_user.py index 4525bd74..20db8313 100644 --- a/backend/service/teams/create_user.py +++ b/backend/service/teams/create_user.py @@ -35,12 +35,12 @@ def create_user_service( send_email( destination=email, - subject="MyFinances | You have been invited to join an organization", + subject="You have been invited to join an organization", content=dedent( f""" Hi {user.first_name or "User"}, - You have been invited by {request.user.email} to join the organization {team.name}. + You have been invited by {request.user.email} to join the organization '{team.name}'. Your account email is: {email} Your temporary password is: {temporary_password} diff --git a/frontend/templates/pages/dashboard.html b/frontend/templates/pages/dashboard.html index 5bd22258..f3dd5910 100644 --- a/frontend/templates/pages/dashboard.html +++ b/frontend/templates/pages/dashboard.html @@ -1,4 +1,10 @@ {% extends base|default:"base/base.html" %} {% block content %} - dashboard +
+
+

Get started with MyFinances

+ View documentation +
+
{% endblock content %}