Files
todoizer/views/login.erb
T
krisf 1f637c6bde
Build and Validate / build-and-test (push) Failing after 1m23s
Initial commit of Todoizer web application
2026-04-20 08:56:12 -04:00

26 lines
1.1 KiB
Plaintext

<div class="row justify-content-center">
<div class="col-md-6 col-lg-5">
<div class="card glass-card shadow-lg border-0 mt-5">
<div class="card-body p-5">
<h2 class="fw-bold mb-4 text-center">Welcome Back</h2>
<form action="/login" method="post">
<div class="mb-3">
<label for="username" class="form-label text-light">Username</label>
<input type="text" class="form-control form-control-lg bg-dark text-light border-secondary" id="username" name="username" required autofocus>
</div>
<div class="mb-4">
<label for="password" class="form-label text-light">Password</label>
<input type="password" class="form-control form-control-lg bg-dark text-light border-secondary" id="password" name="password" required>
</div>
<button type="submit" class="btn btn-primary btn-lg w-100 rounded-pill fw-bold glow-effect">Log In</button>
</form>
<div class="mt-4 text-center">
<a href="/" class="text-decoration-none text-muted">← Back to home</a>
</div>
</div>
</div>
</div>
</div>