epc-qr-code/root/settings.html
Deine Mudda 52f3f8a71a neue Datei: root/css/global.css
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
2022-11-13 00:35:30 +01:00

24 lines
963 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Einstellungen</title>
<meta charset="utf-8">
<link rel="stylesheet" href="./css/global.css">
</head>
<body>
<form method="post">
<input type="hidden" name="action" value="save-settings">
<div id="container">
<div>
<label>Einstellungen</label>
<input id="name" type="text" name="name" placeholder="Empfänger" value="{{ name }}">
<input id="iban" type="text" name="iban" placeholder="IBAN" value="{{ iban }}" pattern="DE\d{2}( )?(\d{4}\1){4}\d{2}">
<input id="bic" type="text" name="bic" placeholder="BIC" value="{{ bic }}" pattern="[A-Z]{6}[A-Z2-9][A-NP-Z0-9][A-Z0-9]{3}">
<input id="usecase" type="text" name="usecase" placeholder="Verwendungszweck" value="{{ usecase }}">
<input type="submit" value="Speichern" class="button">
<a class="button" href="/">Zurück</a>
</div>
</div>
</form>
</body>