mirror of
https://github.com/we-promise/sure.git
synced 2026-04-10 15:54:48 +00:00
* Remove orphan function * Add centralized branding helpers and update locales * Remove _plus and add (proper) brand * No longer Sure, configurable * Consistency with compose file naming * Missed `product_name` mapping * Fix brand/product name in mailers * Product name in email reset flow * Fix i18n errors/tests * Fix password mailer brand/product name (again) * Missed hardcoded `Sure` in onboarding goals Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Signed-off-by: Juan José Mata <jjmata@jjmata.com> * PR nitpick on documentation * Missing interpolation key for invited UI * Orphan assets * New logos --------- Signed-off-by: Juan José Mata <jjmata@jjmata.com> Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
50 lines
1.8 KiB
Plaintext
50 lines
1.8 KiB
Plaintext
<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", product: product_name) %></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: "change" } do |form| %>
|
|
<%= form.toggle :require_invite_for_signup, { data: { auto_submit_form_target: "auto" } } %>
|
|
<% 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: "change" } do |form| %>
|
|
<%= form.toggle :require_email_confirmation, { data: { auto_submit_form_target: "auto" } } %>
|
|
<% 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>
|
|
<%= render DS::Button.new(
|
|
text: t(".generate_tokens"),
|
|
variant: "primary",
|
|
href: invite_codes_path,
|
|
method: :post
|
|
) %>
|
|
</div>
|
|
</div>
|
|
|
|
<div>
|
|
<%= turbo_frame_tag :invite_codes, src: invite_codes_path %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|