19 lines
661 B
PHP
19 lines
661 B
PHP
<?php
|
|
$this->functions->needs('html');
|
|
|
|
$b = new bereiche(2);
|
|
$html = new html($this);
|
|
|
|
?>
|
|
<h2>Benutzer <span id="actiontitle">hinzufügen</a></h2>
|
|
<form action="/user/add/save" method="post">
|
|
<?php $b->oben('useradd', 'Allgemeine Daten'); ?>
|
|
<p><?php $html->get_input('name', 'Name', array('size'=>20) ); ?></p>
|
|
<p><?php $html->get_input('mail', 'e-mail' ); ?></p>
|
|
<p><?php $html->get_input('password1', 'Passwort', array('type'=>'password') ); ?></p>
|
|
<p><?php $html->get_input('password2', 'Passwort wiederholen', array('type'=>'password') ); ?></p>
|
|
|
|
<?php $b->buttons('abbrechen:/user/admin/,speichern'); ?>
|
|
<?php $b->unten(); ?>
|
|
</form>
|