bootstrap 4 update and bugfixes

This commit is contained in:
Joey Kimsey
2024-12-08 04:43:06 -05:00
parent 485d85cb0a
commit 4ab9d33b01
79 changed files with 861 additions and 504 deletions

View File

@ -1,25 +1,44 @@
<form action="{ROOT_URL}home/login" method="post" class="form-horizontal">
<legend>Please sign in</legend>
<div class="form-group">
<label for="username" class="col-lg-3 control-label">Username</label>
<div class="col-lg-3">
<input type="text" class="form-check-input" name="username" id="username" placeholder="username" required autofocus>
<!-- Username -->
<div class="form-group row">
<label for="username" class="col-lg-3 col-form-label">Username</label>
<div class="col-lg-9">
<input type="text" class="form-control" name="username" id="username" placeholder="Username" required autofocus>
</div>
</div>
<div class="form-group">
<label for="password" class="col-lg-3 control-label">Password</label>
<div class="col-lg-3">
<input type="password" class="form-check-input" name="password" id="password" placeholder="password" required>
<!-- Password -->
<div class="form-group row">
<label for="password" class="col-lg-3 col-form-label">Password</label>
<div class="col-lg-9">
<input type="password" class="form-control" name="password" id="password" placeholder="Password" required>
</div>
</div>
<div class="form-group">
<label for="remember" class="col-lg-3 control-label">Remember me</label>
<div class="col-lg-3">
<input name="remember" id="remember" type="checkbox" value="remember-me">
<!-- Remember Me -->
<div class="form-group row">
<div class="col-lg-3"></div>
<div class="col-lg-9">
<div class="form-check">
<input type="checkbox" class="form-check-input" name="remember" id="remember" value="remember-me">
<label class="form-check-label" for="remember">Remember me</label>
</div>
</div>
</div>
<button name="submit" value="submit" type="submit" class="btn btn-lg btn-primary center-block">Sign in</button><br>
<!-- Submit Button -->
<div class="form-group row">
<div class="col-lg-12 text-center">
<button name="submit" value="submit" type="submit" class="btn btn-lg btn-primary">Sign in</button>
</div>
</div>
<!-- Hidden Token -->
<input type="hidden" name="token" value="{TOKEN}">
</form>
Don't have an account? You can register <a href="{ROOT_URL}register">here</a>.<br>
if you need assistance with your username or password, please <a href="{ROOT_URL}register/recover">Click here</a>.
<!-- Additional Links -->
<p>Don't have an account? You can register <a href="{ROOT_URL}register">here</a>.</p>
<p>If you need assistance with your username or password, please <a href="{ROOT_URL}register/recover">Click here</a>.</p>