mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-08-07 14:35:23 +02:00
* Add geist font * Design system css file * Add cursor ui/ux rules * Add shadows and shadow borders * Replace primitives with tokens for common text and backgrounds * Organize css * Update switch and checkbox class names * Add back global color variables
48 lines
2.2 KiB
Text
48 lines
2.2 KiB
Text
<div class="space-y-4">
|
|
<div class="flex items-center justify-between">
|
|
<div class="space-y-1">
|
|
<p class="text-sm"><%= t(".title") %></p>
|
|
<p class="text-secondary text-sm"><%= t(".description") %></p>
|
|
</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_invite_for_signup, class: "sr-only peer", "data-auto-submit-form-target": "auto", "data-autosubmit-trigger-event": "input", disabled: !Current.user.admin? %>
|
|
<%= form.label :require_invite_for_signup, " ".html_safe, class: "switch" %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class="flex items-center justify-between">
|
|
<div class="space-y-1">
|
|
<p class="text-sm"><%= t(".email_confirmation_title") %></p>
|
|
<p class="text-secondary text-sm"><%= t(".email_confirmation_description") %></p>
|
|
</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? %>
|
|
<%= form.label :require_email_confirmation, " ".html_safe, class: "switch" %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
|
|
<% if Setting.require_invite_for_signup %>
|
|
<div class="flex items-center justify-between mb-4">
|
|
<div>
|
|
<span class="text-primary text-base font-medium"><%= t(".generated_tokens") %></span>
|
|
</div>
|
|
<div>
|
|
<%= button_to invite_codes_path,
|
|
method: :post,
|
|
class: "flex gap-1 bg-gray-50 text-primary text-sm rounded-lg px-3 py-2" do %>
|
|
<span><%= t(".generate_tokens") %></span>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<%= turbo_frame_tag :invite_codes, src: invite_codes_path %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|