2020-05-10 03:59:22 +00:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2020-09-24 21:22:46 +00:00
|
|
|
<!-- Namecoin Address: N2aVL6pHtBp7EtNGb3jpsL2L2NyjBNbiB1 -->
|
2020-05-22 20:20:36 +00:00
|
|
|
<link href="{{ url_for('static', filename='favicon.ico') }}" rel="icon">
|
2020-05-14 17:41:46 +00:00
|
|
|
<title>{% block title %}{% endblock %}{% if self.title() %} - {% endif %}Capsul</title>
|
2020-05-11 02:43:06 +00:00
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
|
|
|
<meta name="Description" content="Cyberia Capsul">
|
2020-05-12 17:38:36 +00:00
|
|
|
{% block head %}{% endblock %}
|
2020-05-11 02:43:06 +00:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
2020-05-10 03:59:22 +00:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-05-11 03:55:16 +00:00
|
|
|
<nav>
|
2020-05-15 17:23:42 +00:00
|
|
|
<div class="row justify-space-between half-margin">
|
2020-05-11 03:55:16 +00:00
|
|
|
<div>
|
|
|
|
<a href="/"><b>Capsul</b></a>💊
|
|
|
|
</div>
|
|
|
|
<div>
|
2020-05-15 17:23:42 +00:00
|
|
|
|
2020-05-11 03:55:16 +00:00
|
|
|
{% if session["account"] %}
|
|
|
|
{ {{ session["account"] }} <a href="{{ url_for('auth.logout') }}">Log Out</a> }
|
|
|
|
{% else %}
|
|
|
|
<a href="{{ url_for('auth.login') }}">Login</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
2020-05-11 02:43:06 +00:00
|
|
|
</div>
|
2020-05-15 17:23:42 +00:00
|
|
|
<div class="row justify-center half-margin wrap nav-links">
|
2020-06-08 23:27:13 +00:00
|
|
|
<a href="/pricing">Pricing</a>
|
2020-05-11 03:55:16 +00:00
|
|
|
<a href="/faq">FAQ</a>
|
|
|
|
<a href="/changelog">Changelog</a>
|
2020-05-11 06:47:14 +00:00
|
|
|
|
|
|
|
{% if session["account"] %}
|
2020-05-11 20:13:20 +00:00
|
|
|
<a href="/console">Capsuls</a>
|
|
|
|
<a href="/console/ssh">SSH Public Keys</a>
|
2020-05-12 01:34:12 +00:00
|
|
|
<a href="/console/account-balance">Account Balance</a>
|
2020-05-11 06:47:14 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2020-05-11 03:55:16 +00:00
|
|
|
<a href="/support">Support</a>
|
2020-05-11 02:43:06 +00:00
|
|
|
</div>
|
2020-05-11 03:55:16 +00:00
|
|
|
</nav>
|
2020-05-11 02:43:06 +00:00
|
|
|
{% for message in get_flashed_messages() %}
|
|
|
|
<div class="flash">{{ message }}</div>
|
|
|
|
{% endfor %}
|
2020-05-17 04:02:02 +00:00
|
|
|
{% block custom_flash %}{% endblock %}
|
2020-05-10 03:59:22 +00:00
|
|
|
<main>
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</main>
|
2020-05-11 03:55:16 +00:00
|
|
|
{% block subcontent %}{% endblock %}
|
2020-05-10 03:59:22 +00:00
|
|
|
<footer>
|
2020-05-11 02:43:06 +00:00
|
|
|
(c) Attribution-ShareAlike 4.0 International <br/>
|
|
|
|
A service by Cyberia Computer Club 2020-<span class="bigtext">∞</span> <br/>
|
|
|
|
<br/>
|
|
|
|
<br/>
|
|
|
|
<a href="https://giit.cyberia.club/~forest/capsul-flask/tree/master/capsulflask{% block pagesource %}{% endblock %}">View page source</a>
|
2020-05-10 03:59:22 +00:00
|
|
|
</footer>
|
|
|
|
</body>
|
2020-05-11 02:43:06 +00:00
|
|
|
</html>
|
|
|
|
|
|
|
|
|