-<h1><%= t 'user.confirm.heading' %></h1>
+<% content_for :heading do %>
+ <h1><%= t 'user.confirm.heading' %></h1>
+ <div class='header-illustration confirm-main'></div>
+<% end %>
-<p><%= t 'user.confirm.press confirm button' %></p>
+<% if params[:confirm_string] %>
+ <% content_for :head do %>
+ <%= javascript_include_tag "user" %>
+ <% end %>
-<div id="contributorTerms">
- <p><%= t 'legal.contributor_terms.intro' %></p>
- <ol>
- <li><%= t 'legal.contributor_terms.section_1' %></li>
- <li><%= t 'legal.contributor_terms.section_2' %></li>
- <li><%= t 'legal.contributor_terms.section_3' %></li>
- <p><%= t 'legal.contributor_terms.active_defn_1' %></p>
- <p><%= t 'legal.contributor_terms.active_defn_2' %></p>
- <li><%= t 'legal.contributor_terms.section_4' %></li>
- <li><%= t 'legal.contributor_terms.section_5' %></li>
- <li><%= t 'legal.contributor_terms.section_6' %></li>
- <ol>
- <li><%= t 'legal.contributor_terms.section_6_1' %></li>
- <li><%= t 'legal.contributor_terms.section_6_2' %></li>
- </ol>
- <li><%= t 'legal.contributor_terms.section_7' %></li>
- </ol>
-</div>
+ <% content_for(:content_class) { "user_confirm" } %>
-<form method="post">
- <p>
- <label for="confirm_pd_checkbox"><%= t 'user.confirm.consider_pd' %></label>
- <input id="confirm_pd_checkbox" type="checkbox"
- name="consider_pd"/><br/>
- </p>
- <p>
- <input type="hidden" name="confirm_string" value="<%= params[:confirm_string] %>"/>
- <input type="submit" name="confirm_action" value="<%= t 'user.confirm.button' %>"/>
- </p>
-</form>
+ <p><%= t 'user.confirm.press confirm button' %></p>
+
+ <%= form_tag({}, { :id => "confirm" }) do %>
+ <input type="display_name" name="confirm_string" value="<%= params[:display_name] %>">
+ <input type="hidden" name="confirm_string" value="<%= params[:confirm_string] %>">
+ <input type="submit" name="confirm_action" value="<%= t 'user.confirm.button' %>">
+ <% end %>
+<% else %>
+ <h1>
+ <%= t "user.confirm.introduction_1" %>
+ <span class="deemphasize">
+ <%= t "user.confirm.introduction_2" %>
+ </span>
+ </h1>
+
+ <p class='deemphasize'><%= t "user.confirm.reconfirm_html",
+ :reconfirm => url_for(:action => 'confirm_resend')%></p>
+<% end %>