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>
|
|
|
|
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= styled_form_with model: Setting.new,
|
|
|
|
url: settings_hosting_path,
|
|
|
|
method: :patch,
|
|
|
|
data: { controller: "auto-submit-form", auto_submit_form_trigger_event_value: "change" } do |form| %>
|
|
|
|
<%= form.toggle :require_invite_for_signup, { data: { auto_submit_form_target: "auto" } } %>
|
2024-10-02 12:07:56 -04:00
|
|
|
<% 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>
|
|
|
|
|
2025-04-30 18:14:22 -04:00
|
|
|
<%= styled_form_with model: Setting.new,
|
|
|
|
url: settings_hosting_path,
|
|
|
|
method: :patch,
|
|
|
|
data: { controller: "auto-submit-form", auto_submit_form_trigger_event_value: "change" } do |form| %>
|
|
|
|
<%= form.toggle :require_email_confirmation, { data: { auto_submit_form_target: "auto" } } %>
|
2025-01-31 11:29:49 -06:00
|
|
|
<% 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>
|