Initial Upload

This commit is contained in:
2024-02-28 20:08:16 +01:00
parent a08513190c
commit f2884e185e
7 changed files with 177 additions and 0 deletions

17
templates/index.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Flask App - Insert Number</title>
</head>
<body>
<h1>Insert Number</h1>
<form action="/saveNumber" method="post">
<label for="numberInput">Number:</label>
<input type="number" id="numberInput" name="numberInput">
<button type="submit">Save Number</button>
</form>
</body>
</html>