Files
grecia/app/views/verification/residence/new.html.erb
Alberto Garcia Cabeza 3752f3a53b Adds foundation 6 🎉
2016-02-26 19:33:33 +01:00

86 lines
3.1 KiB
Plaintext

<div class="verification account row">
<div class="small-12 column">
<div class="text-center">
<div class="small-4 column verification-step active">
<span class="number">1</span> <%= t("verification.step_1") %>
</div>
<div class="small-4 column verification-step">
<span class="number">2</span> <%= t("verification.step_2") %>
</div>
<div class="small-4 column verification-step">
<span class="number">3</span> <%= t("verification.step_3") %>
</div>
</div>
<div class="progress small-12 success">
<span class="meter" style="width: 33%"></span>
</div>
<%= link_to account_path, class: "back" do %>
<i class="icon-angle-left"></i>
<%= t("verification.back") %>
<% end %>
<h1><%= t("verification.residence.new.title") %></h1>
<div class="user-permissions small-12">
<p><%= t("verification.user_permission_info") %></p>
<ul>
<li><i class="icon-check"></i>&nbsp;<%= t("verification.user_permission_debates") %></li>
<li><i class="icon-check"></i>&nbsp;<%= t("verification.user_permission_proposal") %></li>
<li><i class="icon-check"></i>&nbsp;<%= t("verification.user_permission_support_proposal") %></li>
<li><i class="icon-x"></i>&nbsp;<%= t("verification.user_permission_votes") %></li>
</ul>
</div>
<%= form_for @residence, as: "residence", url: residence_path do |f| %>
<%= render "errors" %>
<div class="row">
<div class="small-12 medium-8">
<div class="small-12 medium-4 column">
<%= f.label t("verification.residence.new.document_type_label") %>
<%= f.select :document_type, document_types, prompt: "", label: false %>
</div>
<div class="small-12 medium-5 column end">
<%= f.label t("verification.residence.new.document_number") %>
<%= f.text_field :document_number, label: false %>
</div>
</div>
</div>
<div class="date small-12 medium-6 clear">
<%= f.label t("verification.residence.new.date_of_birth") %>
<%= f.date_select :date_of_birth,
prompt: true,
start_year: 1900, end_year: 16.years.ago.year,
label: false %>
</div>
<div class="small-12 medium-5 clear">
<%= f.label t("verification.residence.new.postal_code") %>
<p class="note"><%= t("verification.residence.new.postal_code_note") %></p>
<%= f.text_field :postal_code, label: false %>
</div>
<div class="small-12">
<%= f.label :terms_of_service do %>
<%= f.check_box :terms_of_service, label: false %>
<span class="checkbox">
<%= t("verification.residence.new.accept_terms_text",
terms_url: link_to(t("verification.residence.new.terms"), "/census_terms",
target: "_blank")).html_safe
%>
</span>
<% end %>
</div>
<div class="small-12 clear">
<%= f.submit t("verification.residence.new.verify_residence"), class: "button success" %>
</div>
<% end %>
</div>
</div>