progress on conversion to tailwind

This commit is contained in:
badblocks 2025-03-06 21:28:36 -08:00
parent 6a872124c6
commit 6e2843c60e
110 changed files with 4997 additions and 1691 deletions

View file

@ -0,0 +1,14 @@
{% load i18n %}
{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Hello from {{ site_name }}!
We've received a request to reset your password. If you didn't make this request, you can safely ignore this email. Otherwise, click the button below to reset your password.{% endblocktrans %}
{{ password_reset_url }}
{% if username %}{% blocktrans %}In case you forgot, your username is {{ username }}.{% endblocktrans %}
{% endif %}{% blocktrans with site_name=current_site.name site_domain=current_site.domain %}Thank you for using {{ site_name }}!
{{ site_domain }}{% endblocktrans %}

View file

@ -0,0 +1 @@
Password Reset E-mail

View file

@ -0,0 +1,34 @@
{% extends 'base.html' %}
{% load crispy_forms_tags i18n widget_tweaks %}
{% block head_title %}{% trans "Log In" %}{% endblock %}
{% block content %}
<div class="container mx-auto max-w-md mt-6">
<h1 class="text-3xl font-bold text-center mb-6">{% trans "Log In" %}</h1>
<form method="post" action="{% url 'account_login' %}" class="space-y-4">
{% csrf_token %}
{{ form.non_field_errors }}
<div>
<label for="{{ form.login.id_for_label }}" class="block font-medium text-gray-700">{{ form.login.label }}</label>
{{ form.login|add_class:"input input-bordered w-full" }}
{{ form.login.errors }}
</div>
<div>
<label for="{{ form.password.id_for_label }}" class="block font-medium text-gray-700">{{ form.password.label }}</label>
{{ form.password|add_class:"input input-bordered w-full" }}
{{ form.password.errors }}
</div>
{% if form.remember %}
<div class="flex items-center">
{{ form.remember }}
<label for="{{ form.remember.id_for_label }}" class="ml-2">{% trans "Remember Me" %}</label>
</div>
{% endif %}
<button type="submit" class="btn btn-primary w-full">{% trans "Log In" %}</button>
</form>
<div class="mt-4 text-center">
<a href="{% url 'account_reset_password' %}" class="text-primary underline">{% trans "Forgot Password?" %}</a>
</div>
</div>
{% endblock %}

View file

@ -0,0 +1,16 @@
{% extends 'base.html' %}
{% load crispy_forms_tags i18n %}
{% block head_title %}{% trans "Log Out" %}{% endblock %}
{% block content %}
<div class="container mx-auto max-w-md mt-6">
<h2 class="text-3xl font-bold text-center mb-6">{% trans "Sign Out" %}</h2>
<p class="text-center mb-6">{% trans "Are you sure you want to sign out?" %}</p>
<form method="post" action="{% url 'account_logout' %}" class="space-y-4 text-center">
{% csrf_token %}
{{ form|crispy }}
<button class="btn btn-error w-full" type="submit">{% trans "Sign Out" %}</button>
</form>
</div>
{% endblock %}

View file

@ -0,0 +1,15 @@
{% extends 'base.html' %}
{% load crispy_forms_tags i18n %}
{% block head_title %}{% trans "Change Password" %}{% endblock %}
{% block content %}
<div class="container mx-auto max-w-md mt-6">
<h2 class="text-3xl font-bold text-center mb-6">{% trans "Change Password" %}</h2>
<form method="post" action="{% url 'account_change_password' %}" class="space-y-4">
{% csrf_token %}
{{ form|crispy }}
<button class="btn btn-success w-full" type="submit">{% trans "Change Password" %}</button>
</form>
</div>
{% endblock %}

View file

@ -0,0 +1,21 @@
{% extends 'base.html' %}
{% load crispy_forms_tags i18n widget_tweaks %}
{% block head_title %}{% trans "Reset Password" %}{% endblock %}
{% block content %}
<div class="container mx-auto max-w-md mt-6">
<h2 class="text-3xl font-bold text-center mb-6">{% trans "Reset Password" %}</h2>
<p class="mb-4 text-center">{% trans "Enter your email address and we'll send you a link to reset your password." %}</p>
<form method="post" action="{% url 'account_reset_password' %}" class="space-y-4">
{% csrf_token %}
{{ form.non_field_errors }}
<div>
<label for="{{ form.email.id_for_label }}" class="block font-medium text-gray-700">{{ form.email.label }}</label>
{{ form.email|add_class:"input input-bordered w-full" }}
{{ form.email.errors }}
</div>
<button type="submit" class="btn btn-primary w-full">{% trans "Reset Password" %}</button>
</form>
</div>
{% endblock %}

View file

@ -0,0 +1,11 @@
{% extends 'base.html' %}
{% load crispy_forms_tags i18n %}
{% block head_title %}{% trans "Password Reset Done" %}{% endblock %}
{% block content %}
<div class="container mx-auto max-w-md mt-6 text-center">
<h2 class="text-3xl font-bold mb-4">{% trans "Password Reset" %}</h2>
<p>{% trans "We have sent you an e-mail. Please contact us if you do not receive it in a few minutes." %}</p>
</div>
{% endblock %}

View file

@ -0,0 +1,28 @@
{% extends 'base.html' %}
{% load crispy_forms_tags i18n %}
{% block head_title %}{% trans "Change Password" %}{% endblock %}
{% block content %}
<div class="container mx-auto max-w-md mt-6">
{% if token_fail %}
<h2 class="text-3xl font-bold text-center mb-4">{% trans "Bad Token" %}</h2>
<p class="mb-4 text-center">
{% trans "The password reset link was invalid. Perhaps it has already been used? Please request a" %}
<a href="{% url 'account_reset_password' %}" class="text-primary underline">{% trans "new password reset" %}</a>.
</p>
{% else %}
{% if form %}
<h2 class="text-3xl font-bold text-center mb-6">{% trans "Change Password" %}</h2>
<form method="POST" action="." class="space-y-4">
{% csrf_token %}
{{ form|crispy }}
<button class="btn btn-primary w-full" type="submit">{% trans "Change Password" %}</button>
</form>
{% else %}
<h2 class="text-3xl font-bold text-center mb-4">{% trans "Password Changed" %}</h2>
<p class="text-center">{% trans "Your password is now changed." %}</p>
{% endif %}
{% endif %}
</div>
{% endblock %}

View file

@ -0,0 +1,11 @@
{% extends 'base.html' %}
{% load crispy_forms_tags i18n %}
{% block head_title %}{% trans "Password Change Done" %}{% endblock %}
{% block content %}
<div class="container mx-auto max-w-md mt-6 text-center">
<h2 class="text-3xl font-bold mb-4">{% trans "Password Change Done" %}</h2>
<p>{% trans "Your password has been changed." %}</p>
</div>
{% endblock %}

View file

@ -0,0 +1,43 @@
{% extends 'base.html' %}
{% load i18n widget_tweaks %}
{% block head_title %}{% trans "Sign Up" %}{% endblock %}
{% block content %}
<div class="container mx-auto max-w-md mt-6">
<h1 class="text-3xl font-bold text-center mb-6">{% trans "Sign Up" %}</h1>
<form method="post" action="{% url 'account_signup' %}" class="space-y-4">
{% csrf_token %}
{{ form.non_field_errors }}
<div>
<label for="{{ form.username.id_for_label }}" class="block font-medium text-gray-700">{{ form.username.label }}</label>
{{ form.username|add_class:"input input-bordered w-full" }}
{{ form.username.errors }}
</div>
<div>
<label for="{{ form.email.id_for_label }}" class="block font-medium text-gray-700">{{ form.email.label }}</label>
{{ form.email|add_class:"input input-bordered w-full" }}
{{ form.email.errors }}
</div>
<div>
<label for="{{ form.password1.id_for_label }}" class="block font-medium text-gray-700">{{ form.password1.label }}</label>
{{ form.password1|add_class:"input input-bordered w-full" }}
{{ form.password1.errors }}
</div>
<div>
<label for="{{ form.password2.id_for_label }}" class="block font-medium text-gray-700">{{ form.password2.label }}</label>
{{ form.password2|add_class:"input input-bordered w-full" }}
{{ form.password2.errors }}
</div>
<div>
<label for="{{ form.friend_code.id_for_label }}" class="block font-medium text-gray-700">{{ form.friend_code.label }}</label>
{{ form.friend_code|add_class:"input input-bordered w-full" }}
{{ form.friend_code.errors }}
</div>
<button type="submit" class="btn btn-primary w-full">{% trans "Sign Up" %}</button>
</form>
<div class="mt-4 text-center">
<p>{% trans "Already have an account?" %} <a href="{% url 'account_login' %}" class="text-primary underline">{% trans "Log In" %}</a></p>
</div>
</div>
{% endblock %}