Fixes html formatting for registration closed text

This commit is contained in:
Mouse Reeve 2021-01-05 10:46:07 -08:00
parent b861a3025b
commit 7c34889586

View file

@ -13,7 +13,7 @@
</div>
</div>
<div class="tile is-5 is-parent">
<div class="tile is-child box has-background-primary-light">
<div class="tile is-child box has-background-primary-light content">
{% if site.allow_registration %}
<h2 class="title">Join {{ site.name }}</h2>
<form name="register" method="post" action="/user-register">
@ -21,7 +21,7 @@
</form>
{% else %}
<h2 class="title">This instance is closed</h2>
<p>{{ site.registration_closed_text }}</p>
<p>{{ site.registration_closed_text | safe}}</p>
{% endif %}
</div>
</div>