Rework articles handling #35

Merged
kazhnuz merged 25 commits from feat/new-formats into koblog 2025-01-25 17:02:40 +01:00
Showing only changes of commit e1f77f2eac - Show all commits

View file

@ -11,13 +11,13 @@ echo Bootstrap::formInputHidden(array(
echo '
<div class="form-group">
<input type="text" dir="auto" value="' . (isset($_POST['username']) ? Sanitize::html($_POST['username']) : '') . '" class="form-control form-control-lg" id="jsusername" name="username" placeholder="' . $L->g('Username') . '" autofocus>
<input type="text" dir="auto" value="' . (isset($_POST['username']) ? Sanitize::html($_POST['username']) : '') . '" class="form-control form-control-lg mb-2" id="jsusername" name="username" placeholder="' . $L->g('Username') . '" autofocus>
</div>
';
echo '
<div class="form-group">
<input type="password" class="form-control form-control-lg" id="jspassword" name="password" placeholder="' . $L->g('Password') . '">
<input type="password" class="form-control form-control-lg mb-2" id="jspassword" name="password" placeholder="' . $L->g('Password') . '">
</div>
';
@ -34,4 +34,4 @@ echo '
echo '</form>';
echo '<p class="mt-3 text-right">' . $L->g('Powered by Koblog') . '</p>';
echo '<p class="mt-3 text-end">' . $L->g('Powered by Koblog') . '</p>';