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
This commit is contained in:
23
root/settings.html
Normal file
23
root/settings.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!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>
|
Reference in New Issue
Block a user