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

14 lines
673 B
HTML
Raw Normal View History

<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-white bg-opacity-10"
hidden></div>
{% csrf_token %}
<label for="backend-filepath-form"
class="my-auto justify-center 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>