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

15 lines
655 B
HTML
Raw Normal View History

<form action="{% url "set_settings" %}"
method="post"
class="flex flex-row space-x-2">
2024-03-10 01:36:19 -06:00
<div class="w-full text-sm rounded-xl border-2 border-bluelight-dark bg-[#242424]/10"
hidden></div>
{% csrf_token %}
<label for="backend-filepath-form"
class="m-auto text-md justify-center align-top min-w-fit text-md text-nowrap">AppData Path</label>
{% for field in backend_filepath_form %}{{ field }}{% endfor %}
<input type="submit"
value="Submit"
2024-03-10 01:36:19 -06:00
class="p-2 m-auto text-sm rounded-xl border-2 border-bluelight-dark bg-bluelight-translucent"
id="backend-filepath-form" />
</form>