You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
616 B

<%= 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 %>