44 lines
No EOL
1.6 KiB
HTML
44 lines
No EOL
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Учётная запись</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<script src="{{ url_for('static', filename='js/vendor/jquery.js') }}"></script>
|
|
<script src="{{ url_for('static', filename='vendor/modernizr.js') }}"></script>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/foundation.css') }}" />
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}" />
|
|
</head>
|
|
<body>
|
|
{% include "_header.html" %}
|
|
<div class="row">
|
|
<div class="large-12 columns">
|
|
<h2>Личный кабинет</h2>
|
|
</div>
|
|
<div class="large-12 columns">
|
|
<ul class="inline-list">
|
|
<li><a href="{{ url_for('account.index') }}">Учётная запись</a></li>
|
|
<li><a href="{{ url_for('account.billing') }}">Биллинг</a></li>
|
|
<li><a href='{{ url_for('account.settings') }}'>Настройки</a></li>
|
|
<li><a href='{{ url_for('account.password_update') }}'>Смена пароля</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="large-12 columns">
|
|
<h3>Учётная запись</h3>
|
|
</div>
|
|
<div class="large-12 columns">
|
|
{% if g.errors['total'] > 0 %}
|
|
<div class="alert-box alert">
|
|
<ul>
|
|
{% for error in g.errors['items'] %}<li>{{ error }}</li>{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
{% include "id/_account_information_edit.html" %}
|
|
</div>
|
|
</div>
|
|
{% include "_footer.html" %}
|
|
</body>
|
|
</html> |