rosa-build/app/views/devise/confirmations/new.html.haml

21 lines
827 B
Plaintext
Raw Permalink Normal View History

.block
2014-03-31 11:25:56 +01:00
%h2= title t("devise.confirmations.new.title")
.content
- if resource.errors.present?
.flash
.message.error
- messages = resource.errors.full_messages.map { |msg| content_tag(:p, msg) }.join.html_safe
= messages
2014-01-21 04:51:49 +00:00
= form_for(resource, as: resource_name, url: confirmation_path(resource_name), html: { method: :post, class: "form" }) do |f|
= f.hidden_field :reset_password_token
.group.wat-cf
2014-03-31 11:25:56 +01:00
= f.label :email, class: "label"
= f.text_field :email, class: "text_field"
.group.navform.wat-cf
2014-01-21 04:51:49 +00:00
%button.button{tyle: "submit"}
2014-03-31 11:25:56 +01:00
= image_tag("choose.png", alt: t("devise.confirmations.new.submit_html"))
= t("devise.confirmations.new.submit_html")
%span.text_button_padding
= render "devise/shared/links"