2024-03-09 23:20:35 -06:00
|
|
|
<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"
|
2024-03-09 23:20:35 -06:00
|
|
|
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"
|
2024-03-09 23:20:35 -06:00
|
|
|
id="backend-filepath-form" />
|
|
|
|
</form>
|