diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-29 03:27:36 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-29 03:27:36 +0200 |
commit | 41f8a3e28ecbc36f52eddd72e77effc3339279a1 (patch) | |
tree | c5606b9761a58daf7b9aac5d98dfa9349a281a3c /template/admin/html/auth.php | |
parent | 9626fb5c6a4d7451e88aa7bd7fa91306d3f3f1ea (diff) | |
download | blog-41f8a3e28ecbc36f52eddd72e77effc3339279a1.tar.gz blog-41f8a3e28ecbc36f52eddd72e77effc3339279a1.tar.xz blog-41f8a3e28ecbc36f52eddd72e77effc3339279a1.zip |
The values for the "for" and "id" properties have been converted to lowercase (to be consistent with the rest of the HTML elements).
Diffstat (limited to 'template/admin/html/auth.php')
-rw-r--r-- | template/admin/html/auth.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/admin/html/auth.php b/template/admin/html/auth.php index f2b4cca..0ab2d90 100644 --- a/template/admin/html/auth.php +++ b/template/admin/html/auth.php @@ -13,15 +13,15 @@ <section class="flex"> <section> <div class="form-icon-flex"><i class="fa fa-user-secret"></i></div> - <div class="form-label-flex"><label for="L_USERNAME"><?=$Language->template('label_username')?></label></div> - <div class="form-field-flex"><input id="L_USERNAME" name="username" value="<?=escapeHTML($FORM['DATA']['USERNAME'])?>" /></div> + <div class="form-label-flex"><label for="form_username"><?=$Language->template('label_username')?></label></div> + <div class="form-field-flex"><input id="form_username" name="username" value="<?=escapeHTML($FORM['DATA']['USERNAME'])?>" /></div> </section> </section> <section class="flex"> <section> <div class="form-icon-flex"><i class="fa fa-key"></i></div> - <div class="form-label-flex"><label for="L_PASSWORD"><?=$Language->template('label_password')?></label></div> - <div class="form-field-flex"><input type="password" id="L_PASSWORD" name="password" /></div> + <div class="form-label-flex"><label for="form_password"><?=$Language->template('label_password')?></label></div> + <div class="form-field-flex"><input type="password" id="form_password" name="password" /></div> </section> </section> <section class="flex flex-padding background"> |