2024-10-21 20:20:39 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
|
|
|
Login
|
|
|
|
{% endblock title %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<!--
|
2024-10-23 16:54:44 +00:00
|
|
|
This requires some changes to tailwind config:
|
2024-10-21 20:20:39 +00:00
|
|
|
|
|
|
|
```
|
|
|
|
// tailwind.config.js
|
|
|
|
module.exports = {
|
|
|
|
// ...
|
|
|
|
plugins: [
|
|
|
|
// ...
|
|
|
|
require('@tailwindcss/forms'),
|
|
|
|
],
|
|
|
|
}
|
|
|
|
```
|
|
|
|
-->
|
|
|
|
<div class="flex min-h-full flex-col justify-center px-6 py-12 lg:px-8">
|
|
|
|
<div class="sm:mx-auto sm:w-full sm:max-w-sm">
|
|
|
|
<img class="mx-auto h-12 w-auto" src="https://nixin.distrilab.eu/logo-nixin.svg" alt="NixiN">
|
|
|
|
<h2 class="mt-10 text-center text-2xl font-bold leading-9 tracking-tight text-gray-900">Sign in to your account</h2>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="mt-10 sm:mx-auto sm:w-full sm:max-w-sm">
|
2024-10-23 16:54:44 +00:00
|
|
|
<form class="space-y-6" action="/login" method="POST"
|
|
|
|
hx-post="/login"
|
|
|
|
hx-target="#alert-message"
|
|
|
|
hx-swap="outerHTML"
|
|
|
|
>
|
2024-10-21 20:20:39 +00:00
|
|
|
<div>
|
|
|
|
<label for="email" class="block text-sm font-medium leading-6 text-gray-900">Email address</label>
|
|
|
|
<div class="mt-2">
|
|
|
|
<input id="email" name="email" type="email" autocomplete="email" required class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<div class="flex items-center justify-between">
|
|
|
|
<label for="password" class="block text-sm font-medium leading-6 text-gray-900">Password</label>
|
|
|
|
<div class="text-sm">
|
2024-10-23 16:54:44 +00:00
|
|
|
<a href="/resetpwd" class="font-semibold text-indigo-600 hover:text-indigo-500">Forgot password?</a>
|
2024-10-21 20:20:39 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="mt-2">
|
|
|
|
<input id="password" name="password" type="password" autocomplete="current-password" required class="block w-full rounded-md border-0 py-1.5 text-gray-900 shadow-sm ring-1 ring-inset ring-gray-300 placeholder:text-gray-400 focus:ring-2 focus:ring-inset focus:ring-indigo-600 sm:text-sm sm:leading-6">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-10-23 16:54:44 +00:00
|
|
|
<div id="alert-message"></div>
|
|
|
|
|
2024-10-21 20:20:39 +00:00
|
|
|
<div>
|
|
|
|
<button type="submit" class="flex w-full justify-center rounded-md bg-indigo-600 px-3 py-1.5 text-sm font-semibold leading-6 text-white shadow-sm hover:bg-indigo-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600">Sign in</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
|
|
|
|
<p class="mt-10 text-center text-sm text-gray-500">
|
|
|
|
No account yet?
|
2024-10-23 16:54:44 +00:00
|
|
|
<a href="/register" class="font-semibold leading-6 text-indigo-600 hover:text-indigo-500">Register a new account</a>
|
2024-10-21 20:20:39 +00:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock content %}
|