63 lines
2.2 KiB
HTML
63 lines
2.2 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<head>
|
||
|
|
||
|
{% if title %}
|
||
|
<title>{{ title }}</title>
|
||
|
{% else %}
|
||
|
<title>Gerüchteküche</title>
|
||
|
{% endif %}
|
||
|
|
||
|
<!-- Required meta tags -->
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||
|
|
||
|
<link href="{{ url_for('static', filename='master.css') }}", type="text/css", rel="stylesheet">
|
||
|
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="topnav">
|
||
|
<a class="first" href="#">Finanzer</a>
|
||
|
</div>
|
||
|
<div class="container">
|
||
|
{% block content %}
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
</div>
|
||
|
<div class="bottombar">
|
||
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
||
|
{% if messages %}
|
||
|
{% for category, message in messages %}
|
||
|
<div class="alert alert-{{ category }}">
|
||
|
{{ message }}
|
||
|
</div>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
{% endwith %}
|
||
|
<div class="bottombar-element">
|
||
|
<form method="POST" action="">
|
||
|
{{ form.hidden_tag() }}
|
||
|
<fieldset class="form-group">
|
||
|
<!-- <legend class="reg-label">neue Person hinzufügen</legend> -->
|
||
|
<div class="form-group">
|
||
|
{{ form.username.label(class="reg-label") }}
|
||
|
{{ form.username() }}
|
||
|
</div>
|
||
|
</fieldset>
|
||
|
<div class="form-group m">
|
||
|
{{ form.submit(class="btn") }}
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
<div class="bottombar-element right">
|
||
|
<p>Stornieren</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
<!-- Optional JavaScript -->
|
||
|
<!-- jQuery first, then Popper.js, then Bootstrap JS
|
||
|
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
|
||
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
|
||
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
|
||
|
-->
|
||
|
</body>
|
||
|
</html>
|