Files
pi-control/public_html/templates/settings/user_add.tpl.php
Gregor Schulte b303dd00d6 Init Repo
2021-06-17 12:24:22 +02:00

30 lines
973 B
PHP

<?php if (!defined('PICONTROL')) exit(); ?>
<div>
<div class="box">
<div class="inner-header">
<span><?php _e('Einstellungen zum Benutzer - Benutzer hinzuf&uuml;gen'); ?></span>
<?php showGoBackIcon('?s=settings&amp;do=user'); ?>
</div>
<form action="?s=settings&amp;do=user&amp;add" method="post">
<div class="inner-table">
<table class="table table-borderless table-form">
<tr>
<td><?php _e('Benutzername'); ?></td>
<td><input type="text" name="username" maxlength="32" /></td>
</tr>
<tr>
<td><?php _e('Passwort'); ?></td>
<td><input type="password" name="password" maxlength="64" /></td>
</tr>
<tr>
<td><?php _e('Passwort wiederholen'); ?></td>
<td><input type="password" name="password2" maxlength="64" /></td>
</tr>
</table>
</div>
<div class="inner-end">
<input type="submit" name="submit" value="<?php _e('Hinzuf&uuml;gen'); ?>" />
</div>
</form>
</div>
</div>