Redid the index to use flask forms. Removed un-needed html pages. Started adding database.

This commit is contained in:
dan
2022-01-20 02:22:36 -05:00
parent fa58df3f43
commit 2cbed43b29
7 changed files with 127 additions and 83 deletions

18
templates/base.html Normal file
View File

@@ -0,0 +1,18 @@
<html>
<head>
<title>Hydro</title>
</head>
<body>
<div>Hydro: <a href="index.html">home</a></div>
<br>
{% with messages = get_flashed_messages() %}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
<br>
{% block content %}{% endblock %}
</body>
</html>