Files
todoizer/views/signup.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

27 lines
1.3 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">Save Your Progress</h2>
<p class="text-muted text-center mb-4">Create an account to securely save your current tasks and access them from anywhere.</p>
<form action="/signup" 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">Create Account</button>
</form>
<div class="mt-4 text-center">
<a href="/" class="text-decoration-none text-muted">← Back to my tasks</a>
</div>
</div>
</div>
</div>
</div>