8 lines
208 B
Twig
8 lines
208 B
Twig
{% extends 'base/base.html.twig' %}
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1 class="h3 mb-3 font-weight-normal">Register new user</h1>
|
|
{{ form(registrationForm) }}
|
|
{% endblock %} |