<%= link_to(svg('ikea-foundation'), root_path) %>
|
|
|
|
<%= form_tag url_for(action: 'verify', locale: nil) do %>
|
|
|
|
<%= content_tag :div, class: flash.any? ? 'with-errors' : nil do %>
|
|
<%= label_tag :verification_code, t('sessions.verification_code') %>
|
|
<%= label_tag :verification_code, class: "input-box" do %>
|
|
<%= text_field_tag :verification_code, params[:verification_code] %>
|
|
<% end %>
|
|
|
|
<%- flash.each do |name, msg| -%>
|
|
<%= content_tag :p, msg, role: 'alert' %>
|
|
<%- end -%>
|
|
<% end %>
|
|
|
|
<div>
|
|
<%= button_tag t(:'sessions.verify_email') %>
|
|
</div>
|
|
|
|
<% end %>
|