moved to server
Update readme.md Signed-off-by: rasmus <rsbendtsen@gmail.com> Update readme.md Update Dockerfile Update Dockerfile
This commit is contained in:
18
templates/login.html
Normal file
18
templates/login.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<div class="max-w-md mx-auto bg-white p-8 rounded-2xl shadow-lg mt-10">
|
||||
<h2 class="text-2xl font-bold mb-6">Welcome Back</h2>
|
||||
<form method="POST">
|
||||
<div class="mb-4">
|
||||
<label class="block text-sm font-medium mb-1">Username</label>
|
||||
<input type="text" name="username" class="w-full p-3 border rounded-lg" required>
|
||||
</div>
|
||||
<div class="mb-6">
|
||||
<label class="block text-sm font-medium mb-1">Password</label>
|
||||
<input type="password" name="password" class="w-full p-3 border rounded-lg" required>
|
||||
</div>
|
||||
<button type="submit" class="w-full bg-green-600 text-white py-3 rounded-lg font-bold">Login</button>
|
||||
</form>
|
||||
<p class="mt-4 text-center text-sm">Don't have an account? <a href="/register" class="text-green-600">Sign up</a></p>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user