Initial import

This commit is contained in:
2026-01-18 00:53:18 +00:00
parent fb78291fb1
commit 940191502e
115 changed files with 15524 additions and 0 deletions

19
views/login.blade.php Executable file
View File

@@ -0,0 +1,19 @@
@extends("layout.main")
@section("content")
<div class="row">
<div class="col-lg-4 col-12"></div>
<div class="col-lg-4 col-12 m-3">
<div class="card w-100 p-3">
<h5 class="card-title">Log In</h5>
<div class="card-body">
<form action="/login" method="POST">
{!!Form::input("Username or Email", "username", "")!!}
{!!Form::password("Password", "password", "")!!}
{!!Form::submit("Login")!!}
</form>
</div>
</div>
</div>
<div class="col-lg-4 col-12"></div>
</div>
@endsection