fablab-bottle-clip-generator/app/templates/index.html

23 lines
872 B
HTML
Raw Normal View History

2023-05-23 13:19:28 +02:00
<!DOCTYPE html>
<html lang="de" xmlns="http://www.w3.org/1999/html" data-theme="dark">
<head>
<title>FabLab Bottle Clip Generator</title>
<link rel="stylesheet" href="{{ url_for('static', filename='pico.css') }}">
</head>
<body>
<main class="container">
<center>
<img src="{{ url_for('static', filename='logo.svg') }}" style="max-width: 350px; margin-bottom: 30px;">
<h1>FabLab Bottle Clip Generator</h1>
<p>Bitte gib deinen Namen in das Formular ein und drücke auf <b><i>Generieren</i></b>, um eine STL-Datei zu erhalten.</p>
<form action="{{ url_for('generate_form') }}">
<label for="name">Name:</label>
<input type="text" id="name" name="name" style="text-align: center;" placeholder="Name">
<input type="submit" value="Generieren">
</form>
</center>
</main>
</body>
</html>