add clearTable command, simple webpage start

This commit is contained in:
creations 2025-03-18 21:07:15 -04:00
parent f14daf041a
commit 9a93e6269d
Signed by: creations
GPG key ID: 8F553AA4320FC711
10 changed files with 156 additions and 11 deletions

28
src/views/auth/login.ejs Normal file
View file

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<%- include("../global", { styles: ["auth/login"], scripts: [] }) %>
</head>
<body>
<div class="container">
<div class="header">
<h1><%= instance_name %></h1>
</div>
<div class="content">
<form id="login-form">
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email" required>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" name="password" id="password" required>
</div>
<div class="form-group">
<button type="submit">Login</button>
</div>
</form>
</div>
</div>
</body>
</html>