mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-11-01 09:31:13 +01:00
48594b18e6
* add haml_lint to Gemfile * add .haml-lint.yml * fix warnings of haml_lint
12 lines
536 B
Text
12 lines
536 B
Text
- content_for :page_title do
|
|
= t('auth.resend_confirmation')
|
|
|
|
= simple_form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post }) do |f|
|
|
= render 'shared/error_messages', object: resource
|
|
|
|
= f.input :email, autofocus: true, required: true, placeholder: t('simple_form.labels.defaults.email'), input_html: { 'aria-label' => t('simple_form.labels.defaults.email') }
|
|
|
|
.actions
|
|
= f.button :button, t('auth.resend_confirmation'), type: :submit
|
|
|
|
.form-footer= render 'auth/shared/links'
|