gnu-social/templates/security/register.html.twig
Eliseu Amaro 75837af412
[CSS] Replacing problematic special Unicode glyphs
A browser will use Unicode glyphs from other font families if the glyph in question is not present for the current typeface. This leads to unnerving situations, whereby setting content through pseudo-selectors will cause text to misalign. And no, line-height won't make a difference in this case. This happens because fonts have different heights. Another reason may reside on CSS3 having pseudo selectors but not really having a proper spec for them to begin with.
2022-02-19 04:01:47 +00:00

35 lines
1.2 KiB
Twig

{% extends 'stdgrid.html.twig' %}
{% block title %}Register{% endblock %}
{% block body %}
<section class="frame-section">
<form class="section-form" method="post">
{{ form_start(registration_form) }}
{{ form_errors(registration_form) }}
<fieldset class="container-block">
<legend class="section-form-legend">
<h1>{{ "Register" | trans }}</h1>
</legend>
{% for flashError in app.flashes('verify_email_error') %}
<label class="alert alert-danger" role="alert">{{ flashError }}</label>
{% endfor %}
{% for flashError in app.flashes('verify_nickname_error') %}
<label class="alert alert-danger" role="alert">{{ flashError }}</label>
{% endfor %}
{{ form_row(registration_form.nickname) }}
{{ form_row(registration_form.email) }}
{{ form_row(registration_form.password) }}
{{ form_row(registration_form.register) }}
</fieldset>
{{ form_end(registration_form) }}
</form>
</section>
{% endblock body %}
{% block javascripts %}{% endblock %}