refactor: Fixes HTML paragraph formatting in registration template

Corrects the HTML paragraph tag to ensure proper rendering
by wrapping the text block inside <p> tags, improving
template readability and ensuring consistent display.

No logical changes to functionality.
This commit is contained in:
Kumi 2024-11-16 22:17:10 +01:00
parent f97473cc56
commit 06d0022a45
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -21,7 +21,9 @@
<div class="control">{{ form.registration_reason }}</div>
<p class="help is-danger">{{ form.registration_reason.errors }}</p>
</div>
<p class="help">Sending this form will create a Matrix account for you and reserve your username. However, you will not be able to log in until an administrator approves your registration. Please provide a reason for your registration to help us expedite the approval process.</p>
<p class="help">
Sending this form will create a Matrix account for you and reserve your username. However, you will not be able to log in until an administrator approves your registration. Please provide a reason for your registration to help us expedite the approval process.
</p>
<button type="submit" class="button is-link">Complete Registration</button>
</form>
{% endblock content %}