aboutsummaryrefslogtreecommitdiffstats
path: root/theme/admin/html/user
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-19 01:37:36 +0200
committerThomas Lange <code@nerdmind.de>2021-06-19 01:37:36 +0200
commitbe49d1f366da155737d05a17f73cf1c3d246c67e (patch)
treec6301914d6d356163faaf5ae853f0bfecfea7939 /theme/admin/html/user
parent84455052b4f2aa90f12e83a60acd896301512357 (diff)
downloadblog-be49d1f366da155737d05a17f73cf1c3d246c67e.tar.gz
blog-be49d1f366da155737d05a17f73cf1c3d246c67e.tar.xz
blog-be49d1f366da155737d05a17f73cf1c3d246c67e.zip
Remove ID form field (and rearrange other fields)
This commit removes the ID form field, enlarges the title form field and rearranges the other form fields in the grid layout.
Diffstat (limited to 'theme/admin/html/user')
-rw-r--r--theme/admin/html/user/form.php27
1 files changed, 10 insertions, 17 deletions
diff --git a/theme/admin/html/user/form.php b/theme/admin/html/user/form.php
index 7e370e5..54e21a1 100644
--- a/theme/admin/html/user/form.php
+++ b/theme/admin/html/user/form.php
@@ -13,25 +13,25 @@
<?php if($FORM['TYPE'] !== 'DELETE'): ?>
<div class="form-grid">
- <label for="form_id">
- <i class="fa fa-database"></i>ID</label>
+ <label for="form_fullname">
+ <i class="fa fa-user"></i><?=$Language->text('label_fullname')?></label>
- <div class="form-grid-item">
- <input<?=($FORM['TYPE'] === 'UPDATE') ? ' disabled="disabled"' : '';?> id="form_id" name="id" type="number" placeholder="AUTO_INCREMENT" value="<?=escapeHTML($FORM['DATA']['ID'])?>" />
+ <div class="form-grid-item first">
+ <input id="form_fullname" name="fullname" value="<?=escapeHTML($FORM['DATA']['FULLNAME'])?>" />
</div>
- <label for="form_password">
- <i class="fa fa-key"></i><?=$Language->text('label_password')?></label>
+ <label for="form_username">
+ <i class="fa fa-user-secret"></i><?=$Language->text('label_username')?></label>
<div class="form-grid-item">
- <input id="form_password" name="password" placeholder="NO CHANGE" type="password" />
+ <input id="form_username" name="username" value="<?=escapeHTML($FORM['DATA']['USERNAME'])?>" />
</div>
- <label for="form_fullname">
- <i class="fa fa-user"></i><?=$Language->text('label_fullname')?></label>
+ <label for="form_password">
+ <i class="fa fa-key"></i><?=$Language->text('label_password')?></label>
<div class="form-grid-item">
- <input id="form_fullname" name="fullname" value="<?=escapeHTML($FORM['DATA']['FULLNAME'])?>" />
+ <input id="form_password" name="password" placeholder="NO CHANGE" type="password" />
</div>
<label for="form_mailaddr">
@@ -41,13 +41,6 @@
<input id="form_mailaddr" name="mailaddr" value="<?=escapeHTML($FORM['DATA']['MAILADDR'])?>" />
</div>
- <label for="form_username">
- <i class="fa fa-user-secret"></i><?=$Language->text('label_username')?></label>
-
- <div class="form-grid-item">
- <input id="form_username" name="username" value="<?=escapeHTML($FORM['DATA']['USERNAME'])?>" />
- </div>
-
<label for="form_slug">
<i class="fa fa-link"></i><?=$Language->text('label_slug')?></label>