2024-10-02 12:07:56 -04:00
|
|
|
<div class="space-y-4">
|
|
|
|
<div class="flex items-center justify-between">
|
|
|
|
<div class="space-y-1">
|
|
|
|
<p class="text-sm"><%= t(".title") %></p>
|
2025-02-13 11:31:07 -05:00
|
|
|
<p class="text-secondary text-sm"><%= t(".description") %></p>
|
2024-10-02 12:07:56 -04:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= styled_form_with model: Setting.new, url: settings_hosting_path, method: :patch, data: { controller: "auto-submit-form", "auto-submit-form-trigger-event-value" => "blur" } do |form| %>
|
|
|
|
<div class="relative inline-block select-none">
|
2025-01-24 02:47:51 +01:00
|
|
|
<%= form.check_box :require_invite_for_signup, class: "sr-only peer", "data-auto-submit-form-target": "auto", "data-autosubmit-trigger-event": "input", disabled: !Current.user.admin? %>
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= form.label :require_invite_for_signup, " ".html_safe, class: "switch" %>
|
2024-10-02 12:07:56 -04:00
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
2025-01-31 11:29:49 -06:00
|
|
|
<div class="flex items-center justify-between">
|
|
|
|
<div class="space-y-1">
|
|
|
|
<p class="text-sm"><%= t(".email_confirmation_title") %></p>
|
2025-02-13 11:31:07 -05:00
|
|
|
<p class="text-secondary text-sm"><%= t(".email_confirmation_description") %></p>
|
2025-01-31 11:29:49 -06:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<%= styled_form_with model: Setting.new, url: settings_hosting_path, method: :patch, data: { controller: "auto-submit-form", "auto-submit-form-trigger-event-value" => "blur" } do |form| %>
|
|
|
|
<div class="relative inline-block select-none">
|
|
|
|
<%= form.check_box :require_email_confirmation, class: "sr-only peer", "data-auto-submit-form-target": "auto", "data-autosubmit-trigger-event": "input", disabled: !Current.user.admin? %>
|
2025-02-13 11:31:07 -05:00
|
|
|
<%= form.label :require_email_confirmation, " ".html_safe, class: "switch" %>
|
2025-01-31 11:29:49 -06:00
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
|
2024-10-02 12:07:56 -04:00
|
|
|
<% if Setting.require_invite_for_signup %>
|
|
|
|
<div class="flex items-center justify-between mb-4">
|
|
|
|
<div>
|
2025-02-13 11:31:07 -05:00
|
|
|
<span class="text-primary text-base font-medium"><%= t(".generated_tokens") %></span>
|
2024-10-02 12:07:56 -04:00
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<%= button_to invite_codes_path,
|
|
|
|
method: :post,
|
2025-02-13 11:31:07 -05:00
|
|
|
class: "flex gap-1 bg-gray-50 text-primary text-sm rounded-lg px-3 py-2" do %>
|
2024-10-02 12:07:56 -04:00
|
|
|
<span><%= t(".generate_tokens") %></span>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<%= turbo_frame_tag :invite_codes, src: invite_codes_path %>
|
|
|
|
</div>
|
|
|
|
<% end %>
|
|
|
|
</div>
|