membersystem/src/project/templates/index.html

18 lines
388 B
HTML

{% extends "base.html" %}
{% block head_title %}
{% trans "Home" %}
{% endblock %}
{% block content %}
<div class="content-view">
<h2>Welcome {{ user }}!</h2>
<div class="infobox">
<p>
To get you started we need to verify your email!
</p>
<button>Verify email</button>
</div>
</div>
{% endblock %}