first commit

This commit is contained in:
Colin-Joel Scupin
2026-08-05 01:29:39 +02:00
commit 86d4bcdc37
85 changed files with 7706 additions and 0 deletions
@@ -0,0 +1,44 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main id="app" class="hidden">
<section class="bank">
<header>
<div>
<p>LOS SANTOS FINANCIAL</p>
<h1>Banking</h1>
</div>
<button id="close" aria-label="Schließen">×</button>
</header>
<div id="error" class="error hidden"></div>
<section class="account">
<div><span>KONTO</span><strong id="accountName"></strong></div>
<div><span>KONTONUMMER</span><strong id="accountNumber"></strong></div>
<div class="balance"><span>VERFÜGBAR</span><strong id="balance">0 $</strong></div>
</section>
<section class="columns">
<form id="transferForm">
<h2>Überweisung</h2>
<label>Empfängerkonto<input name="destination" placeholder="LS0000000000" required></label>
<label>Betrag<input name="amount" type="number" min="1" step="1" required></label>
<label>Verwendungszweck<input name="reference" maxlength="140" value="Überweisung"></label>
<button type="submit">Überweisen</button>
</form>
<div>
<h2>Letzte Buchungen</h2>
<div id="transactions" class="transactions"></div>
</div>
</section>
</section>
</main>
<script src="app.js"></script>
</body>
</html>