This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
mandayejs/mandayejs/mandaye/templates/mandaye/associate.html

25 lines
839 B
HTML

{% load i18n gadjo staticfiles %}
<html>
<head>
<link rel="stylesheet" href="{% static 'css/associate.css' %}" type="text/css"/>
</head>
<body>
<div id="main-div">
<h1>{% trans 'Associate your account' %}</h1>
<div id='div-logo'><img id='logo' src="{% static 'images/associate.png' alt='associate.png' %}" /></div>
{% if messages %}
<ul class="messages">
{%for message in messages%}
<li>{{message}}</li>
{%endfor%}
</ul>
{%endif%}
<form id='associate' method="post">
{% csrf_token %}
{{ form.as_p }}
<p><input id="submit" type="submit" value="{% trans 'Submit' %}" /></p>
</form>
</div>
</body>
</html>