aboutsummaryrefslogtreecommitdiffstats
path: root/theme/admin/html/auth.php
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2024-01-23 20:22:35 +0100
committerThomas Lange <code@nerdmind.de>2024-01-23 20:22:35 +0100
commit53c035918a4f34b826728e06d9b77e4bcb440517 (patch)
tree468f763d1fc4237e77b0c85771c20f69b3ac0ed2 /theme/admin/html/auth.php
parent09f52cfcc8ced8bed60e5c1702e6f35cf3fe1f29 (diff)
downloadblog-53c035918a4f34b826728e06d9b77e4bcb440517.tar.gz
blog-53c035918a4f34b826728e06d9b77e4bcb440517.tar.xz
blog-53c035918a4f34b826728e06d9b77e4bcb440517.zip
Remove trailing slash on void elements
The trailing slash on void elements (self-closing tags) doesn't have any effect, isn't required by HTML5 and it is recommended to not use it.
Diffstat (limited to 'theme/admin/html/auth.php')
-rw-r--r--theme/admin/html/auth.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/theme/admin/html/auth.php b/theme/admin/html/auth.php
index efc402e..89bd224 100644
--- a/theme/admin/html/auth.php
+++ b/theme/admin/html/auth.php
@@ -13,26 +13,26 @@
<?php endif ?>
<form action="" method="POST">
- <input type="hidden" name="token" value="<?=$FORM['TOKEN']?>" />
+ <input type="hidden" name="token" value="<?=$FORM['TOKEN']?>">
<div class="form-grid two-columns">
<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'])?>" required autofocus />
+ <input id="form_username" name="username" value="<?=escapeHTML($FORM['DATA']['USERNAME'])?>" required autofocus>
</div>
<label for="form_password">
<i class="fa fa-key"></i><?=$Language->text('label_password')?></label>
<div class="form-grid-item">
- <input type="password" id="form_password" name="password" required />
+ <input type="password" id="form_password" name="password" required>
</div>
</div>
<div class="form-border-box background padding nobordertop">
- <input type="submit" name="auth" value="<?=$Language->text('login')?>" />
+ <input type="submit" name="auth" value="<?=$Language->text('login')?>">
</div>
</form>
</main>