32 lines
951 B
PHP
32 lines
951 B
PHP
<fieldset>
|
|
<legend>Benutzer anlegen</legend>
|
|
<form action="index.php?<?php echo $_SERVER['QUERY_STRING']; ?>" method="post">
|
|
<input type="hidden" name="new" value="1" />
|
|
<label>Vorname</label>
|
|
<input type="text" name="Vorname" />
|
|
<br />
|
|
<label>Nachname</label>
|
|
<input type="text" name="Nachname" />
|
|
<br />
|
|
<label>Telefon</label>
|
|
<input type="text" name="Telefon" />
|
|
<br />
|
|
<label>Mobil</label>
|
|
<input type="text" name="Mobil" />
|
|
<br />
|
|
<label>EMail</label>
|
|
<input type="text" name="EMail" />
|
|
<br /> <br />
|
|
<label>Benutzername</label>
|
|
<input type="text" name="User" />
|
|
<br />
|
|
<label>Passwort</label>
|
|
<input type="password" name="Password" />
|
|
<br />
|
|
<label>Passwortbestätigung</label>
|
|
<input type="password" name="Password2" />
|
|
<br />
|
|
<input type="submit" class="button_save" name="formaction" value="save" title="Benutzerdaten speichern" />
|
|
</form>
|
|
</fieldset>
|