24 lines
548 B
HTML
Executable File
24 lines
548 B
HTML
Executable File
{% block css %}
|
|
<link type="text/css" rel="stylesheet" href="/themes/default/css/account.css">
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
{% if account is empty %}
|
|
<section id="account">
|
|
<a onclick="core.account.authentication()">
|
|
{{ language == 'ru' ? "Аутентификация" : "Authentication" }}
|
|
</a>
|
|
</section>
|
|
{% else %}
|
|
<section id="account">
|
|
<a onclick="core.account.profile()">
|
|
@{{ account.domain }}
|
|
</a>
|
|
</section>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="/js/modules/account.js" type="module"></script>
|
|
{% endblock %}
|