initial import

This commit is contained in:
br0tcraft
2024-08-17 18:57:14 +02:00
parent 16991fe2c0
commit fe1f00978b
15 changed files with 1486 additions and 0 deletions

47
templates/start.html Normal file
View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vokabeltrainer</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f0f0f0;
margin: 0;
padding: 0;
}
h1 {
color: #333;
margin-top: 50px;
}
.container {
margin-top: 30px;
}
.button {
display: inline-block;
padding: 15px 25px;
font-size: 18px;
color: white;
background-color: #007bff;
border: none;
border-radius: 5px;
text-decoration: none;
margin: 10px;
}
.button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<h1>Vokabeltrainer</h1>
<div class="container">
<a href="/train" class="button">Vokabeln trainieren</a>
<a href="/settings" class="button">Einstellungen</a>
<a href="/vocab" class="button">Meine Vokabeln</a>
</div>
</body>
</html>