{% extends '__layout__.html' %} {% block title %}Redeem{% endblock %} {% block head %} {% endblock %} {% block content %}

Giftcard Redeem

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% if category == 'error': %}
{{ message }}
{% endif %} {% if category == 'success': %}
{{ message }}
{% endif %} {% endfor %}
{% endif %} {% endwith %}

Note: If you are redeeming a higher membership than your current one, your expiration date will not be brought over and will be resetted

{% endblock %}