Translate interface text to Dutch for improved localization

This commit is contained in:
Alvin
2025-11-04 10:34:58 +01:00
parent 0e8a906cfd
commit 278e9353f9
7 changed files with 73 additions and 73 deletions

View File

@@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>School Warehouse System</title>
<title>School Magazijn Systeem</title>
<link rel="icon" type="image/svg+xml" href="/favicon.svg">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
@@ -14,21 +14,21 @@
<div class="col-md-6">
<div class="card">
<div class="card-header">
<h2 class="text-center">Login</h2>
<h2 class="text-center">Inloggen</h2>
</div>
<div class="card-body">
<form id="loginForm">
<div class="mb-3">
<label for="username" class="form-label">Username</label>
<label for="username" class="form-label">Gebruikersnaam</label>
<input type="text" class="form-control" id="username" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Password</label>
<label for="password" class="form-label">Wachtwoord</label>
<input type="password" class="form-control" id="password" required>
</div>
<div class="text-center">
<button type="submit" class="btn btn-primary">Login</button>
<p class="mt-3">New student? <a href="register.html">Register here</a></p>
<button type="submit" class="btn btn-primary">Inloggen</button>
<p class="mt-3">Nieuwe student? <a href="register.html">Registreer hier</a></p>
</div>
</form>
</div>