Nicole Tietz-Sokolskaya
3acafda0d3
and templates. Tihs also adds an ADR for using Tailwind. Add a pile of dependencies setup orm, add admin tool admin tool does random pass if none provided add tons of css stuff finish up web skeleton
35 lines
1.3 KiB
HTML
35 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{% include "head.html" %}
|
|
<body class="min-h-screen bg-purple-100">
|
|
<div class="h-full">
|
|
<div class="flex min-h-screen flex-1 flex-col justify-center py-12">
|
|
<div class="flex flex-1 flex-row justify-center grow-0">
|
|
<div class="max-w-sm rounded overflow-hidden shadow-lg bg-white">
|
|
<form method="post" class="">
|
|
<h1 class="text-xl">Sign In to Pique</h1>
|
|
|
|
{% if error %}
|
|
<p class="">{{ error }}</p>
|
|
{% endif %}
|
|
|
|
<div class="">
|
|
<label>Username</label>
|
|
<input type="text" name="username" placeholder="Username" value="{{ username }}" required>
|
|
</div>
|
|
|
|
<div class="">
|
|
<label>Password</label>
|
|
<input type="password" name="password" placeholder="Password" required>
|
|
</div>
|
|
|
|
<div class="">
|
|
<input type="submit" value="Log In">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|