Changes the header copy

This commit is contained in:
Mouse Reeve 2021-04-01 12:46:38 -07:00
parent f5d03aa1f4
commit bd0c0ff2a2
2 changed files with 6 additions and 2 deletions

View file

@ -9,8 +9,12 @@
<div class="modal-background"></div>
<div class="modal-card is-fullwidth">
<header class="modal-card-head">
<img class="image logo mr-2" src="{% if site.logo_small %}/images/{{ site.logo_small }}{% else %}/static/images/logo-small.png{% endif %}" aria-hidden="true">
<h1 class="modal-card-title" id="get-started-header">
{% trans "Getting Started" %}
{% blocktrans %}Welcome to {{ site_name }}!{% endblocktrans %}
<span class="subtitle is-block">
{% trans "These are some first steps to get you started." %}
</span>
</h1>
<a href="/" class="delete" aria-label="{% trans 'Close' %}"></a>
</header>

View file

@ -111,7 +111,7 @@ class Register(View):
invite.save()
login(request, user)
return redirect("/")
return redirect("get-started-profile")
@method_decorator(login_required, name="dispatch")