31 lines
1.0 KiB
HTML
31 lines
1.0 KiB
HTML
<!doctype html>
|
|
<head>
|
|
<title>aBot</title>
|
|
<meta name="viewport" content="width=440" />
|
|
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
|
|
<script src="{{ url_for('static', filename='script.js') }}" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
|
|
|
|
<div class=page>
|
|
<div class=header>
|
|
<a href="#bottom">About</a>
|
|
</div>
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
<div class=page>
|
|
<div class=footer>
|
|
About aBot
|
|
<ul>
|
|
<li>This voting machine does not store information about you.</li>
|
|
<li>The token given to you is stored separately from the answers you give.</li>
|
|
<li>This voting machine does not know the connection between your contact information and the vote token. Somebody else handled the token emailing (or any other kind of message).</li>
|
|
<li>Source code at <a href="https://bitbucket.org/MoonQ/aBot/">Bitbucket</a>.
|
|
{% if config.GIT_COMMIT %} Last known changeset in the running environment: {{ config.GIT_COMMIT }}{% endif %}</li>
|
|
</ul>
|
|
<a id="bottom"></a>
|
|
</div>
|
|
</div>
|
|
</body>
|