Files
thetempusproject/app/views/user_cp/settings.html
Joey Kimsey 35b7be92a6 bugfixes and small features
Fixed config switches not registering the correct current value
Added better ux when image uploads are disabled
Fixed an issue where uploaded files were not being handled correctly
Added the ability to disable user registrations
Fixed some variables being unintendedly protected
2025-01-26 15:13:34 -05:00

15 lines
611 B
HTML

<div class="container py-4 context-main-bg my-4 text-center">
<h3 class="mb-4">Preferences</h3>
<hr>
<div class="row justify-content-center">
<div class="col-md-6">
<form action="" method="post" class="" enctype="multipart/form-data">
<fieldset>
{PREFERENCES_FORM}
</fieldset>
<input type="hidden" name="token" value="{TOKEN}">
<button name="submit" value="submit" type="submit" class="btn btn-lg btn-primary center-block">Update</button><br>
</form>
</div>
</div>
</div>