Initial commit

This commit is contained in:
Joey Kimsey
2024-08-04 21:15:59 -04:00
parent c9d1fb983f
commit 0d469501ee
695 changed files with 70184 additions and 71 deletions

25
app/views/login.html Normal file
View File

@ -0,0 +1,25 @@
<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>
</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>
</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">
</div>
</div>
<button name="submit" value="submit" type="submit" class="btn btn-lg btn-primary center-block">Sign in</button><br>
<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>.