bernd commited on 2007-07-30 21:02:23
Zeige 2 geänderte Dateien mit 4 Einfügungen und 4 Löschungen.
git-svn-id: https://svn.schokokeks.org/repos/tools/webinterface/trunk@576 87cf0b9e-d624-0410-a070-f6ee81989793
... | ... |
@@ -105,7 +105,7 @@ elseif (isset($_GET['action']) && $_GET['action'] == 'create') |
105 | 105 |
<td><input type="checkbox" id="enabled" name="enabled" value="true" /></td> |
106 | 106 |
</tr> |
107 | 107 |
</table> |
108 |
- <p><input type="submit" name="create" value="Anlegen" /><br /> |
|
108 |
+ <p><input type="submit" name="create" value="Anlegen" /></p> |
|
109 | 109 |
')); |
110 | 110 |
} |
111 | 111 |
elseif (isset($_GET['action']) && $_GET['action'] == 'delete' && $_GET['account'] != '') |
... | ... |
@@ -82,13 +82,13 @@ else |
82 | 82 |
*/ |
83 | 83 |
|
84 | 84 |
output(html_form("register_index", "", "", '<p><span class="login_label">Anrede:</span> |
85 |
- '.html_select('anrede', array('Herr' => 'Herr', 'Frau' => 'Frau', 'Firma' => 'Firma'), $_POST['anrede']).' |
|
85 |
+ '.html_select('anrede', array('Herr' => 'Herr', 'Frau' => 'Frau', 'Firma' => 'Firma'), $_POST['anrede']).'</p> |
|
86 | 86 |
<p><span class="login_label">Firma:</span> <input type="text" name="firma" size="30" value="'.$_POST['firma'].'" /></p> |
87 | 87 |
<p><span class="login_label">Vorname:</span> <input type="text" name="vorname" size="30" value="'.$_POST['vorname'].'" /></p> |
88 | 88 |
<p><span class="login_label">Nachname:</span> <input type="text" name="nachname" size="30" value="'.$_POST['nachname'].'" /></p> |
89 | 89 |
<p><span class="login_label">E-Mail-Adresse:</span> <input type="text" name="email" size="30" value="'.$_POST['email'].'" /></p> |
90 |
- <p><span class="login_label">AGB:</span> <input type="checkbox" name="agb_gelesen" value="1"'.($_POST['agb_gelesen'] == 1 ? ' checked="checked"' : '').'" /> Ja, ich habe <a href="http://schokokeks.org/agb">die Allgemeinen Geschäftsbedingungen von schokokeks.org Webhosting</a> gelesen und erkläre mich damit einverstanden.</p> |
|
91 |
- <p><span class="login_label"> </span> <input type="submit" value="Zugang erstellen" />')); |
|
90 |
+ <p><span class="login_label">AGB:</span> <input type="checkbox" name="agb_gelesen" value="1"'.($_POST['agb_gelesen'] == 1 ? ' checked="checked"' : '').' /> Ja, ich habe <a href="http://schokokeks.org/agb">die Allgemeinen Geschäftsbedingungen von schokokeks.org Webhosting</a> gelesen und erkläre mich damit einverstanden.</p> |
|
91 |
+ <p><span class="login_label"> </span> <input type="submit" value="Zugang erstellen" /></p>')); |
|
92 | 92 |
|
93 | 93 |
} |
94 | 94 |
|
95 | 95 |