23 lines
No EOL
833 B
HTML
23 lines
No EOL
833 B
HTML
{% 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 %} |