khaganat-web/khaganat/templates/khaganat/email.html
Rodolphe Breard ab4eb7414c Add basic user functionalities
Users need to register, login, logout and reset their password.
2018-02-04 01:36:39 +01:00

11 lines
284 B
HTML

{% load i18n %}{% get_current_language as LANGUAGE_CODE %}<!doctype html>
<html lang="{{ LANGUAGE_CODE }}">
<head>
<meta charset="utf-8" />
</head>
<body>
<div class="container" id="main-content">
{% block content %}{% endblock %}
</div>
</body>
</html>