30 lines
794 B
HTML
30 lines
794 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>Mein Konto</title>
|
|
<link rel="stylesheet" href="styles.css">
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<h1>Sparrkasse</h1>
|
|
|
|
<section class="balance">
|
|
<label for="balanceDisplay">Kontostand:</label>
|
|
<div id="balanceDisplay" class="amount">--</div>
|
|
</section>
|
|
|
|
<section class="transfer">
|
|
<label for="amountInput">Überweisungsbetrag</label>
|
|
<input id="amountInput" type="text" placeholder="z. B. 120.50" aria-label="Überweisungsbetrag">
|
|
<button id="transferBtn">Überweisen</button>
|
|
</section>
|
|
|
|
<div id="message" role="status" aria-live="polite"></div>
|
|
</main>
|
|
|
|
<script src="app.js"></script>
|
|
</body>
|
|
</html>
|