finished conversion to tailwind

This commit is contained in:
badblocks 2025-03-11 23:45:27 -07:00
parent 6e2843c60e
commit d62956d465
50 changed files with 2490 additions and 1273 deletions

View file

@ -0,0 +1,23 @@
{% extends 'base.html' %}
{% load i18n %}
{% block head_title %}{% trans "Settings" %}{% endblock %}
{% block content %}
<div class="container mx-auto flex items-center justify-center min-h-screen">
<div class="w-full max-w-sm p-6 bg-base-100 shadow rounded-box">
<h1 class="text-3xl font-bold text-center mb-6">{% trans "Settings" %}</h1>
<div class="flex flex-col gap-4">
<a href="{% url 'list_friend_codes' %}" class="btn btn-primary w-full">
{% trans "Friend Codes" %}
</a>
<a href="{% url 'account_logout' %}" class="btn btn-warning w-full">
{% trans "Logout" %}
</a>
<a href="https://www.gravatar.com/profile/" target="_blank" rel="noopener noreferrer" class="btn btn-secondary w-full">
{% trans "Profile" %}
</a>
</div>
</div>
</div>
{% endblock %}