form->csrf() ?>
form->label(t('Application URL'), 'application_url') ?> form->text('application_url', $values, $errors, array('placeholder="http://example.kanboard.net/"')) ?>

form->label(t('Language'), 'application_language') ?> form->select('application_language', $languages, $values, $errors) ?> form->checkbox('password_reset', t('Enable "Forget Password"'), 1, $values['password_reset'] == 1) ?>
form->label(t('Timezone'), 'application_timezone') ?> form->select('application_timezone', $timezones, $values, $errors) ?> form->label(t('Date format'), 'application_date_format') ?> form->select('application_date_format', $date_formats, $values, $errors) ?>

form->label(t('Time format'), 'application_time_format') ?> form->select('application_time_format', $time_formats, $values, $errors) ?>
form->label(t('Custom Stylesheet'), 'application_stylesheet') ?> form->textarea('application_stylesheet', $values, $errors) ?>
hook->render('template:config:application', array('values' => $values, 'errors' => $errors)) ?>