mirror of
https://github.com/we-promise/sure.git
synced 2026-04-17 11:04:14 +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>
25 lines
786 B
Plaintext
25 lines
786 B
Plaintext
<%= render DS::Dialog.new do |dialog| %>
|
|
<% dialog.with_header(title: t(".title"), subtitle: t(".subtitle", product: product_name)) %>
|
|
|
|
<% dialog.with_body do %>
|
|
<%= styled_form_with model: @invitation, class: "space-y-4", data: { turbo: false } do |form| %>
|
|
<%= form.email_field :email,
|
|
required: true,
|
|
placeholder: t(".email_placeholder"),
|
|
label: t(".email_label") %>
|
|
|
|
<%= form.select :role,
|
|
options_for_select([
|
|
[t(".role_member"), "member"],
|
|
[t(".role_admin"), "admin"]
|
|
]),
|
|
{},
|
|
{ label: t(".role_label") } %>
|
|
|
|
<div class="w-full">
|
|
<%= form.submit t(".submit"), class: "bg-inverse fg-inverse rounded-lg px-4 py-2 w-full" %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|