neocities/views/settings/site/profile.erb
2023-12-28 15:36:20 -06:00

28 lines
946 B
Text

<h2>General Settings</h2>
<div>
<form method="POST" action="/settings/<%= @site.username %>/profile">
<%== csrf_token_input_html %>
<h3>Site Profile</h3>
<div style="text-align: center">
<div style="display: inline-block; text-align: left; margin-bottom: 10px">
<input name="site[profile_comments_enabled]" type="hidden" value="true">
<input name="site[profile_comments_enabled]" type="checkbox" value="false"
<% if @site.profile_comments_enabled == false %>checked<% end %>
> Disable Site Profile Comments
<br>
<input name="site[profile_enabled]" type="hidden" value="true">
<input name="site[profile_enabled]" type="checkbox" value="false"
<% if @site.profile_enabled == false %>checked<% end %>
> Disable Site Profile
<br>
</div>
</div>
<input class="btn-Action" type="submit" value="Update Settings">
</form>
</div>