2024-03-09 23:20:35 -06:00
|
|
|
<form action="{% url "set_settings" %}"
|
|
|
|
method="post"
|
|
|
|
class="flex flex-row space-x-2">
|
2024-03-12 22:30:39 -05:00
|
|
|
<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>
|
2024-03-09 23:20:35 -06:00
|
|
|
</form>
|