Do code format

This commit is contained in:
Tim Schumacher 2013-10-16 16:31:53 +02:00
parent 20549b7973
commit 07f6fcce98

View file

@ -21,8 +21,11 @@
<!-- Text input--> <!-- Text input-->
<div class="control-group"> <div class="control-group">
<label class="control-label" for="username">{% trans %}Benutzername{% endtrans %}</label> <label class="control-label" for="username">{% trans %}Benutzername{% endtrans %}</label>
<div class="controls"> <div class="controls">
<input id="username" name="username" placeholder="bernd" class="input-xlarge" required="" type="text"> <input id="username" name="username" placeholder="bernd" class="input-xlarge" required=""
type="text">
<p class="help-block">{% trans %}Gib hier deinen gewünschten Benutzernamen ein.{% endtrans %}</p> <p class="help-block">{% trans %}Gib hier deinen gewünschten Benutzernamen ein.{% endtrans %}</p>
</div> </div>
</div> </div>
@ -30,6 +33,7 @@
<!-- Select Basic --> <!-- Select Basic -->
<div class="control-group"> <div class="control-group">
<label class="control-label" for="host">{% trans %}Server{% endtrans %}</label> <label class="control-label" for="host">{% trans %}Server{% endtrans %}</label>
<div class="controls"> <div class="controls">
<select id="host" name="host" class="input-xlarge" required=""> <select id="host" name="host" class="input-xlarge" required="">
<option></option> <option></option>
@ -37,43 +41,61 @@
<option>{{ host }}</option> <option>{{ host }}</option>
{% endfor %} {% endfor %}
</select> </select>
<p class="help-block">{% trans %}Wähle hier einen Servernamen aus. Deine XMPP-ID ist dann <span class="xmpp-id-preview">Benutzername@Servername</span>{% endtrans %}</p>
<p class="help-block">{% trans %}Wähle hier einen Servernamen aus. Deine XMPP-ID ist dann <span
class="xmpp-id-preview">Benutzername@Servername</span>{% endtrans %}</p>
</div> </div>
</div> </div>
<!-- Text input--> <!-- Text input-->
<div class="control-group"> <div class="control-group">
<label class="control-label" for="mail">{% trans %}E-Mail-Adresse{% endtrans %}</label> <label class="control-label" for="mail">{% trans %}E-Mail-Adresse{% endtrans %}</label>
<div class="controls"> <div class="controls">
<input id="mail" name="mail" placeholder="bernd@example.com" class="input-xlarge" required="" type="text"> <input id="mail" name="mail" placeholder="bernd@example.com" class="input-xlarge" required=""
<p class="help-block">{% trans %}Gib hier eine gültige E-Mail-Adresse ein. Die Adresse wird benutzt um dir einen Validierungscode zu schicken, sie wird nicht gespeichert.{% endtrans %}</p> type="text">
<p class="help-block">{% trans %}Gib hier eine gültige E-Mail-Adresse ein. Die Adresse wird benutzt
um dir einen Validierungscode zu schicken, sie wird nicht gespeichert.{% endtrans %}</p>
</div> </div>
</div> </div>
<!-- Password input--> <!-- Password input-->
<div class="control-group"> <div class="control-group">
<label class="control-label" for="password">{% trans %}Passwort{% endtrans %}</label> <label class="control-label" for="password">{% trans %}Passwort{% endtrans %}</label>
<div class="controls"> <div class="controls">
<input id="password" name="password" placeholder="" class="input-xlarge" required="" type="password"> <input id="password" name="password" placeholder="" class="input-xlarge" required=""
<p class="help-block">{% trans %}Bitte wähle ein starkes Passwort. Also mindestens 8, besser 12 oder mehr Zeichen mit einer möglichst großen Variation aus Klein- und Großbuchstaben, Zahlen und Sonderzeichen.{% endtrans %}</p> type="password">
<p class="help-block">{% trans %}Bitte wähle ein starkes Passwort. Also mindestens 8, besser 12 oder
mehr Zeichen mit einer möglichst großen Variation aus Klein- und Großbuchstaben, Zahlen und
Sonderzeichen.{% endtrans %}</p>
</div> </div>
</div> </div>
<!-- Password input--> <!-- Password input-->
<div class="control-group"> <div class="control-group">
<label class="control-label" for="password_repeat">{% trans %}Passwortwiederholung{% endtrans %}</label> <label class="control-label" for="password_repeat">{% trans %}Passwortwiederholung{% endtrans %}</label>
<div class="controls"> <div class="controls">
<input id="password_repeat" name="password_repeat" placeholder="" class="input-xlarge" required="" type="password"> <input id="password_repeat" name="password_repeat" placeholder="" class="input-xlarge" required=""
<p class="help-block">{% trans %}Bitte wiederhole hier dein gewähltes Passwort um sicherzustellen, dass du dich auch nicht vertippt hast.{% endtrans %}</p> type="password">
<p class="help-block">{% trans %}Bitte wiederhole hier dein gewähltes Passwort um sicherzustellen,
dass du dich auch nicht vertippt hast.{% endtrans %}</p>
</div> </div>
</div> </div>
<!-- Button (Double) --> <!-- Button (Double) -->
<div class="control-group"> <div class="control-group">
<label class="control-label" for="submit"></label> <label class="control-label" for="submit"></label>
<div class="controls"> <div class="controls">
<button type="submit" id="submit" name="submit" class="btn btn-success">{% trans %}Absenden{% endtrans %}</button> <button type="submit" id="submit" name="submit" class="btn btn-success">{% trans %}
<button type="reset" id="cancel" name="cancel" class="btn btn-danger">{% trans %}Abbrechen{% endtrans %}</button> Absenden{% endtrans %}</button>
<button type="reset" id="cancel" name="cancel" class="btn btn-danger">{% trans %}
Abbrechen{% endtrans %}</button>
</div> </div>
</div> </div>