<%track_event(category: "verification", action: "start_sms" )%>
1 <%= t("verification.step_1") %>
2 <%= t("verification.step_2") %>
3 <%= t("verification.step_3") %>
<%= link_to account_path, class: "back" do %> <%= t("verification.back") %> <% end %>

<%= t("verification.sms.edit.title") %>

<%= form_for @sms, as: "sms", url: sms_path, method: :put do |f| %> <% if @error %>
<%= @error %>
<% end %>
<%= f.label t("verification.sms.edit.confirmation_code") %> <%= f.text_field :confirmation_code, label: false %>
<%= f.submit t("verification.sms.edit.submit_button"), class: "button success" %> <% end %>

<%= t("verification.sms.edit.resend_sms_text") %>
<%= link_to t("verification.sms.edit.resend_sms_link"), verified_user_path %>