{% extends '/wizard/slides/welcome/base.twig' %}

{% block slide_body_video_section_blurb %}
	<h5>Watch the quick (42s) explanatory video:</h5>
	<p>Shield's Security Badge demonstrates clearly that you take security seriously,
	   both for yourself and also that of your customers.</p>
	<p>Enabling this option adds a translucent badge to the footer of your site.</p>
{% endblock %}

{% block slide_body_action_area %}

	<form class="form-horizontal icwp-wizard-form">

		<div class="row">
			<div class="col-4">
				Enable Security Badge
			</div>
			<div class="col-8">
				{{ icwp_macros.formInput_Radio_Wizard(
					'SecurityPluginBadge',
					{
						'Y': '<span>Turn On</span> - Display Security Badge To Visitors',
						'N': "<span>Turn Off</span> - Don't Show Visitors Security Badge"
					},
					'Set Visitor Security Badge'
				) }}
			</div>
		</div>

		{{ icwp_macros.formInput_Submit2( 'Set Security Badge', null, null, false ) }}
		{{ icwp_macros.formInput_Hidden( 'wizard-step', vars.step ) }}
	</form>
{% endblock %}