wip from ATB

This commit is contained in:
Joey Kimsey
2025-01-04 17:21:14 -05:00
parent 87e4f90bab
commit 32a9711ade
60 changed files with 556 additions and 342 deletions

View File

@ -1,4 +1,3 @@
<div class="dropdown nav-item mx-2">
<a
href="#"
@ -9,50 +8,44 @@
aria-expanded="false">
<i class="fa fa-user"></i>
</a>
<div class="dropdown-menu dropdown-menu-dark dropdown-menu-end text-small shadow" aria-labelledby="userDropdown">
<div class="dropdown-menu dropdown-menu-dark dropdown-menu-end text-small shadow" aria-labelledby="userDropdown" style="min-width: 300px;">
<form method="post" action="{ROOT_URL}home/login" id="signin" class="px-4 py-3">
<input type="hidden" name="rurl" id="rurl" value="{CURRENT_URL}">
<input type="hidden" name="token" value="{TOKEN}">
<!-- Username -->
<div class="form-group">
<input
id="username"
type="text"
class="form-control mb-2"
name="username"
placeholder="Username">
<div class="form-group mb-3">
<input id="username"
type="text"
class="form-control"
name="username"
placeholder="Username">
</div>
<!-- Password -->
<div class="form-group">
<input
id="password"
type="password"
class="form-control mb-2"
name="password"
placeholder="Password">
<div class="form-group mb-3">
<input id="password"
type="password"
class="form-control"
name="password"
placeholder="Password">
</div>
<!-- Remember Me -->
<div class="form-check">
<input
type="checkbox"
class="form-check-input mb-2"
id="remember"
name="remember"
value="true">
<label class="form-check-label" for="remember">Remember me</label>
<!-- Remember Me -->
<div class="form-check form-switch mb-3">
<input class="form-check-input" type="checkbox" role="switch" name="remember" id="remember" value="true">
<label class="form-check-label" for="remember">Stay Logged In</label>
</div>
<!-- Submit Button -->
<button
type="submit"
class="btn btn-primary btn-block"
name="submit"
value="submit">
Sign in
</button>
<!-- Submit and Register Buttons -->
<div class="d-flex gap-1">
<button name="submit" value="submit" type="submit" class="btn btn-primary flex-fill">
Sign in
</button>
<a href="{ROOT_URL}register" class="btn btn-outline-primary flex-fill">
Create new
</a>
</div>
</form>
</div>
</div>
</div>