mirror of
https://github.com/neocities/neocities.git
synced 2025-04-24 17:22:35 +02:00
37 lines
1.3 KiB
Text
37 lines
1.3 KiB
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>
|
|
|
|
<h3>IPFS Archiving</h3>
|
|
|
|
<div style="display: inline-block; text-align: left; margin-bottom: 10px">
|
|
<input name="site[ipfs_archiving_enabled]" type="hidden" value="false">
|
|
<input name="site[ipfs_archiving_enabled]" type="checkbox" value="true"
|
|
<% if @site.ipfs_archiving_enabled == true %>checked<% end %>
|
|
> Enable IPFS Archiving
|
|
</div>
|
|
</div>
|
|
|
|
<input class="btn-Action" type="submit" value="Update Settings">
|
|
|
|
</form>
|
|
</div>
|