reamenagement

This commit is contained in:
Nathan-rek
2024-11-20 16:39:17 +01:00
parent e02d1d0bba
commit 12a249e478
142 changed files with 18858 additions and 18858 deletions

View File

@@ -0,0 +1,42 @@
{% extends "index.html" %}
{% block content%}
<div class="form-block">
<form action="/text" method="post" enctype="multipart/form-data" >
<p>Textes:</p>
<p><textarea type="text" name="txt" placeholder="Enter your text here"></textarea> </p>
<p><input type="submit" value="Submit"/></p>
</form>
<form action="/svg_file" method="post" enctype="multipart/form-data" >
<label for="file">Upload SVG File:</label>
<input type="file" id="file" name="file" accept="image/svg" required/>
<p><input type="submit" value="Submit"/></p>
</form>
<form action="/gcode_file" method="post" enctype="multipart/form-data" >
<label for="file">Upload Gcode File:</label>
<input type="file" id="file" name="file" accept="gcode" required/>
<p><input type="submit" value="Submit"/></p>
</form>
</div>
{% endblock %}

View File

@@ -0,0 +1,15 @@
<!doctype html>
<html>
<head>
<title>Plotter app</title>
<link rel="stylesheet" type="text/css" href="{{url_for('static', filename='style.css')}}">
</head>
<body>
<h1>Plotter app - Wallter</h1>
{% block content%}
{% endblock %}
</body>
</html>