Wrap the new templates in the form, so they look good.

This commit is contained in:
Tim Schumacher 2013-10-16 12:15:05 +02:00
parent 7a6e3359e4
commit 3f0bb13ec6
3 changed files with 28 additions and 3 deletions

View file

@ -1,5 +1,13 @@
{% extends "layout.twig" %}
{% block content %}
<p>Bei der Registrierung ist etwas schief gelaufen. Bitte probiere es <a href="{{ url }}">noch einmal</a>.</p>
<form class="form-horizontal" method="post">
<fieldset>
<!-- Form Name -->
<legend>{% trans %}Ein XMPP-Konto registrieren{% endtrans %}</legend>
<p>Bei der Registrierung ist etwas schief gelaufen. Bitte probiere es <a href="{{ url }}">noch einmal</a>.
</p>
</fieldset>
</form>
{% endblock %}

View file

@ -1,5 +1,13 @@
{% extends "layout.twig" %}
{% block content %}
<p>{% trans %}Der angegebene Token wurde nicht gefunden{% endtrans %}</p>
<form class="form-horizontal" method="post">
<fieldset>
<!-- Form Name -->
<legend>{% trans %}Ein XMPP-Konto registrieren{% endtrans %}</legend>
<p>{% trans %}Der angegebene Token wurde nicht gefunden{% endtrans %}</p>
</fieldset>
</form>
{% endblock %}

View file

@ -1,5 +1,14 @@
{% extends "layout.twig" %}
{% block content %}
<p>{% trans %}Herzlich Willkommen %jid%! {% endtrans %}</p>
<form class="form-horizontal" method="post">
<fieldset>
<!-- Form Name -->
<legend>{% trans %}Ein XMPP-Konto registrieren{% endtrans %}</legend>
<p>{% trans %}Herzlich Willkommen %jid%! {% endtrans %}</p>
</fieldset>
</form>
{% endblock %}