queen/templates/signup.html

36 lines
732 B
HTML

{% extends "base.html" %}
{% block title %}Welcome to the Kitten Collective!{% endblock %}
{% block content %}
<!-- Show the monthly link if we have it -->
{% match monthly_link %}
{% when Some with (link) %}
<div>
<p><a href="{{ link }}">Just $3/month!</a></p>
</div>
{% else %}
{% endmatch %}
<!-- Show the annual link if we have it -->
{% match annual_link %}
{% when Some with (link) %}
<div>
<p><a href="{{ link }}">Just $30/year!</a></p>
</div>
{% else %}
{% endmatch %}
<!-- the invitation is also a URL -->
{% match invitation %}
{% when Some with (link) %}
<div>
<p><a href="{{ link }}">Free, limited account for collaborating with other kittens</a></p>
</div>
{% else %}
{% endmatch %}
{% endblock %}