Application_Form/app/views/application_forms/show_privacy.html.erb

29 lines
576 B
Plaintext
Raw Normal View History

2016-06-29 06:57:45 +00:00
<% # encoding: utf-8 %>
<%
data = action_data
2022-03-10 02:11:18 +00:00
@application_form_agreement = data["application_form_agreement"]
2016-06-29 06:57:45 +00:00
%>
<style type="text/css">
.highlight {
background-color: #f7f7f9;
border: 1px solid #e1e1e8;
border-radius: 4px;
margin-bottom: 14px;
padding: 9px 14px;
}
</style>
2022-03-10 02:11:18 +00:00
<h3><%= t('application_form_signup.privacy_statement') %></h3>
2016-06-29 06:57:45 +00:00
2022-03-10 02:11:18 +00:00
<div class="highlight application_form_privacy">
2016-06-29 06:57:45 +00:00
2023-01-06 07:30:03 +00:00
<%= @application_form_agreement.content.to_s.html_safe %>
2016-06-29 06:57:45 +00:00
</div>
<br />
<%= link_to t(:close), 'javascript:window.close();', :class => 'btn btn-primary' %>