nyxask/app/templates/account.j2
2025-03-13 19:15:29 -05:00

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>