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:
parent
f97473cc56
commit
06d0022a45
1 changed files with 3 additions and 1 deletions
|
@ -21,7 +21,9 @@
|
||||||
<div class="control">{{ form.registration_reason }}</div>
|
<div class="control">{{ form.registration_reason }}</div>
|
||||||
<p class="help is-danger">{{ form.registration_reason.errors }}</p>
|
<p class="help is-danger">{{ form.registration_reason.errors }}</p>
|
||||||
</div>
|
</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>
|
<button type="submit" class="button is-link">Complete Registration</button>
|
||||||
</form>
|
</form>
|
||||||
{% endblock content %}
|
{% endblock content %}
|
||||||
|
|
Loading…
Reference in a new issue