restructure, start flask stuff

This commit is contained in:
2022-10-11 13:19:48 -05:00
parent 37fd33c0f3
commit 63eb8bdb85
23 changed files with 311 additions and 68 deletions

4
templates/app.css Normal file
View File

@@ -0,0 +1,4 @@
.form {
display: flex;
flex-direction: column;
}

8
templates/base.jinja2 Normal file
View File

@@ -0,0 +1,8 @@
<!DOCTYPE html>
<head>
<title>Pyrometry Application</title>
<link rel="app.css">
</head>
<body>
{% block content %}
</body>

7
templates/index.jinja2 Normal file
View File

@@ -0,0 +1,7 @@
{% extends "base.html" %}
{% block content %}
<div class="form">
<button onclick="">
</button>
</div>
{% endblock %}