mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-15 21:55:09 -05:00
11 lines
204 B
Twig
11 lines
204 B
Twig
|
{% extends layout %}
|
||
|
|
||
|
{% block content %}
|
||
|
|
||
|
<form action="#" method="post">
|
||
|
{{ form_widget(form) }}
|
||
|
|
||
|
<input type="submit" name="submit" />
|
||
|
</form>
|
||
|
<p><a href="/">back to home</a></p>
|
||
|
{% endblock %}
|