feat: Begins views, login is currently not working.
This commit is contained in:
15
Resources/Views/login.leaf
Normal file
15
Resources/Views/login.leaf
Normal file
@@ -0,0 +1,15 @@
|
||||
<div id="body" class="container">
|
||||
<form class="login-form">
|
||||
<label for="email">Email</label>
|
||||
<input type="text" id="email" placeholder="Email" name="email" autocomplete="email" required autofocus>
|
||||
<br>
|
||||
<label for="password">Password</label>
|
||||
<input type="password" id="password" placeholder="Password" name="password" autocomplete="current-password" required>
|
||||
<br>
|
||||
<button hx-post="/login"
|
||||
hx-target="#body"
|
||||
hx-trigger="click">
|
||||
Sign In
|
||||
</button>
|
||||
</form>
|
||||
</div>
|
||||
Reference in New Issue
Block a user