2013-02-18 03:48:21 +01:00
|
|
|
<div class="page-header">
|
|
|
|
<h2>Preferences</h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<form method="post" action="?action=config">
|
|
|
|
|
2013-03-20 05:21:20 +01:00
|
|
|
<?= Helper\form_label('Username', 'username') ?>
|
2013-02-18 03:48:21 +01:00
|
|
|
<?= Helper\form_text('username', $values, $errors, array('required')) ?><br/>
|
|
|
|
|
2013-03-20 05:21:20 +01:00
|
|
|
<?= Helper\form_label('Password', 'password') ?>
|
2013-02-18 03:48:21 +01:00
|
|
|
<?= Helper\form_password('password', $values, $errors) ?><br/>
|
|
|
|
|
2013-03-20 05:21:20 +01:00
|
|
|
<?= Helper\form_label('Confirmation', 'confirmation') ?>
|
2013-02-18 03:48:21 +01:00
|
|
|
<?= Helper\form_password('confirmation', $values, $errors) ?><br/>
|
|
|
|
|
|
|
|
<div class="form-actions">
|
|
|
|
<input type="submit" value="Update" class="btn btn-blue"/>
|
|
|
|
</div>
|
|
|
|
</form>
|