2019-11-20 02:31:25 -05:00
|
|
|
<div id="simple-container">
|
|
|
|
<% if @almost_done %>
|
|
|
|
<h2><%= t 'change_email.authorizing_old.almost_done_title' %></h2>
|
|
|
|
<p>
|
|
|
|
<%= t 'change_email.authorizing_old.almost_done_description' %>
|
|
|
|
</p>
|
|
|
|
<% elsif @error %>
|
|
|
|
<div class='alert alert-error'>
|
|
|
|
<%= @error %>
|
|
|
|
</div>
|
|
|
|
<% else %>
|
|
|
|
<h2><%= t 'change_email.authorizing_old.title' %></h2>
|
|
|
|
<p>
|
2020-06-10 12:11:49 -04:00
|
|
|
<% if @change_request&.old_email %>
|
|
|
|
<%= t 'change_email.authorizing_old.description' %>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<%= t 'change_email.authorizing_old.old_email', email: @from_email %>
|
|
|
|
<br>
|
|
|
|
<%= t 'change_email.authorizing_old.new_email', email: @to_email %>
|
|
|
|
<% else %>
|
|
|
|
<%= t 'change_email.authorizing_old.description_add' %>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<%= @to_email %>
|
|
|
|
<% end %>
|
2019-11-20 02:31:25 -05:00
|
|
|
</p>
|
|
|
|
|
|
|
|
<%=form_tag(u_confirm_old_email_path, method: :put) do %>
|
2021-11-25 02:34:39 -05:00
|
|
|
<%= hidden_field_tag 'token', params[:token] %>
|
2019-11-20 02:31:25 -05:00
|
|
|
<%= submit_tag t('change_email.confirm'), class: "btn btn-primary" %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
</div>
|