neue Datei: root/error.html neue Datei: root/favicon.ico neue Datei: root/index.html neue Datei: root/message.html neue Datei: root/qrcode.html neue Datei: root/settings.html
24 lines
657 B
HTML
24 lines
657 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Preis eingeben</title>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href="./css/global.css">
|
|
</head>
|
|
<body>
|
|
<form method="post">
|
|
<input type="hidden" name="action" value="price-input">
|
|
<div id="container">
|
|
<div>
|
|
<label for="price">Preis eingeben</label>
|
|
<div id="price-input-div">
|
|
<input id="price" type="number" name="price">
|
|
<span>€</span>
|
|
</div>
|
|
<input type="submit" value="Weiter" class="button">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<a href="/settings" id="settings-button" class="button">Einstellungen</a>
|
|
</body>
|