You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
456 B
17 lines
456 B
{% extends 'layout.html.twig' %} |
|
|
|
{% block body %} |
|
<h1>Create Reading List</h1> |
|
|
|
{{ form_start(form) }} |
|
{{ form_row(form.title, {label: 'Title'}) }} |
|
{{ form_row(form.summary) }} |
|
{{ form_row(form.tags) }} |
|
|
|
<div class="mt-3 d-flex flex-row gap-2 actions"> |
|
<a class="btn btn-secondary" href="{{ path('read_wizard_cancel') }}">Cancel</a> |
|
<button class="btn btn-primary">Add articles</button> |
|
</div> |
|
{{ form_end(form) }} |
|
{% endblock %} |
|
|
|
|