membersystem/src/project/templates/index.html

29 lines
601 B
HTML
Raw Normal View History

2019-08-31 18:46:49 +00:00
{% extends "base.html" %}
2023-10-02 18:50:39 +00:00
{% block head_title %}
{% trans "Home" %}
{% endblock %}
2023-10-04 10:26:20 +00:00
{% block content %}
<div class="content-view">
<h2>Welcome {{ user }}!</h2>
2024-01-13 20:05:16 +00:00
<p>
This is the new member area.
</p>
<p>
It is very much under construction.
</p>
{% comment %}
<hr>
<br>
2023-10-04 10:26:20 +00:00
<div class="infobox">
<p>
2024-01-13 20:05:16 +00:00
To get started we need you to verify your email!
2023-10-04 10:26:20 +00:00
</p>
<button>Verify email</button>
</div>
2024-01-13 20:05:16 +00:00
{% endcomment %}
2023-10-04 10:26:20 +00:00
</div>
{% endblock %}