tunic-tracker-redux/tunictracker/tracker/templates/tracker/settings/index.html

14 lines
653 B
HTML

<form action="{% url "set_settings" %}"
method="post"
class="flex flex-row space-x-2">
<div class="w-full rounded-lg border-none shadow-[inset_0_35px_60px_-15px_rgba(0,0,0,0.3)] bg-charcoal-translucent-light"
hidden></div>
{% csrf_token %}
<label for="backend-filepath-form"
class="justify-center my-auto align-top min-w-fit text-md text-nowrap">AppData Path</label>
{% for field in backend_filepath_form %}{{ field }}{% endfor %}
<button type="submit"
class="p-2 rounded-md bg-white bg-opacity-10 shadow-sm shadow-[#242424]"
id="backend-filepath-form">Submit</button>
</form>