diff options
Diffstat (limited to 'app/Template/category')
-rw-r--r-- | app/Template/category/edit.php | 2 | ||||
-rw-r--r-- | app/Template/category/index.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/Template/category/edit.php b/app/Template/category/edit.php index d788f673..78156e6f 100644 --- a/app/Template/category/edit.php +++ b/app/Template/category/edit.php @@ -33,7 +33,7 @@ <div class="form-help"><?= $this->url->doc(t('Write your text in Markdown'), 'syntax-guide') ?></div> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> <?= t('or') ?> <?= $this->url->link(t('cancel'), 'category', 'index', array('project_id' => $project['id']), false, 'close-popover') ?> </div> diff --git a/app/Template/category/index.php b/app/Template/category/index.php index 7b1adf78..b3bdfd81 100644 --- a/app/Template/category/index.php +++ b/app/Template/category/index.php @@ -40,6 +40,6 @@ <?= $this->form->text('name', $values, $errors, array('autofocus', 'required', 'maxlength="50"')) ?> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> </div> </form>
\ No newline at end of file |