28 lines
882 B
PHP
28 lines
882 B
PHP
<?php
|
|
require_once __DIR__ . '/includes/db_connect.php';
|
|
$system = getenv('POSTGRES_SYSTEM') ?? 'test';
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<h2 class="seitentitel"><a href="index.php" id="homeButton">pyolingo</a></h2>
|
|
<a href="neueKarte.php" id="neueKarte">
|
|
<img src="img/plus.svg" style="width:50px; height:50px"/>
|
|
</a>
|
|
</div>
|
|
<div class="inhalt">
|
|
<form id="kategorieAuswahl" action="quiz.php" method="post">
|
|
<input type="submit" name="kategorieAuswahl" value="Substantive">
|
|
<input type="submit" name="kategorieAuswahl" value="Adjektive">
|
|
<input type="submit" name="kategorieAuswahl" value="Allgemein">
|
|
<input type="submit" name="kategorieAuswahl" value="Eigennamen">
|
|
<input type="submit" name="kategorieAuswahl" value="Verben">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|