{% extends 'NCBSWBundle::layout_plain.html.twig' %}
{% block title %}Verse of the Day email sign up - {{ parent() }}{% endblock %}
{% block description %}Sign up to receive the Verse of the Day email from New Christian Bible Study{% endblock %}
{% block content %}
<h1><i class="fad fa-quotes" style="color:#d27316;"></i> {{ app.session.get('ui_str')["dailyversepage.heading"] }}</h1>
<hr>
{% if daily_verse_text is not empty %}
{{ daily_verse_text|raw }}
<hr>
{% endif %}
<div class="text-content">
<p>{{ app.session.get('ui_str')["dailyversepage.text"]|raw }}</p>
<p><a class="btn btn-outline-primary" id="btnReceiveVerseOfDay" href="javascript:setReceiveVerseOfDay();" title="{{ app.session.get('ui_str')["verseofday.signupbutton"] }}"><i class="fas fa-envelope-square"></i> {{ app.session.get('ui_str')["verseofday.signupbutton"] }}</a></p>
</div>
{% endblock %}