mirror of
https://github.com/Alvin-Zilverstand/Challenge_15_Magazijn_App_Maken.git
synced 2026-03-07 21:29:36 +01:00
Translate interface text to Dutch for improved localization
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Student Registration - School Warehouse System</title>
|
||||
<title>Student Registratie - 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,12 +14,12 @@
|
||||
<div class="col-md-6">
|
||||
<div class="card">
|
||||
<div class="card-header">
|
||||
<h2 class="text-center">Student Registration</h2>
|
||||
<h2 class="text-center">Student Registratie</h2>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<form id="registrationForm">
|
||||
<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">
|
||||
@@ -27,20 +27,20 @@
|
||||
<input type="email" class="form-control" id="email"
|
||||
placeholder="123456@vistacollege.nl"
|
||||
pattern="^\d+@vistacollege\.nl$"
|
||||
title="Email must be in the format: studentnumber@vistacollege.nl"
|
||||
title="Email moet in het formaat zijn: studentnummer@vistacollege.nl"
|
||||
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="mb-3">
|
||||
<label for="confirmPassword" class="form-label">Confirm Password</label>
|
||||
<label for="confirmPassword" class="form-label">Bevestig Wachtwoord</label>
|
||||
<input type="password" class="form-control" id="confirmPassword" required>
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<button type="submit" class="btn btn-primary">Register</button>
|
||||
<p class="mt-3">Already have an account? <a href="index.html">Login here</a></p>
|
||||
<button type="submit" class="btn btn-primary">Registreren</button>
|
||||
<p class="mt-3">Heb je al een account? <a href="index.html">Log hier in</a></p>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user