19 lines
484 B
Django/Jinja
19 lines
484 B
Django/Jinja
{% from 'header.j2' import header_login %}
|
|
{% from 'imports.j2' import imports_main %}
|
|
<html lang=en>
|
|
<head>
|
|
<title>{{ instanceBranding }} - Register</title>
|
|
{{ imports_main() }}
|
|
</head>
|
|
<body>
|
|
{{ header_login() }}
|
|
<div style="text-align:center">
|
|
<h1>
|
|
{{ instanceBranding }} - Account
|
|
</h1>
|
|
<h3>
|
|
Hello, {{ userName }}!
|
|
</h3>
|
|
</div>
|
|
</body>
|
|
</html>
|