41 lines
1.2 KiB
HTML
41 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="nl" data-theme="light">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta name="color-scheme" content="light dark">
|
|
<title>Demo - Inloggen</title>
|
|
|
|
<!-- Link Pico CSS bestand aan deze pagina -->
|
|
<link rel="stylesheet" href="css/vendor/pico.blue.min.css">
|
|
<!-- En onze eigen CSS -->
|
|
<link rel="stylesheet" href="css/index.css">
|
|
|
|
<script defer type="module" src="js/inloggen.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<main class="container">
|
|
<article>
|
|
<h1>Inloggen</h1>
|
|
<form id="loginform">
|
|
<fieldset>
|
|
<label>
|
|
Email
|
|
<input type="email" name="email" placeholder="E-mail" />
|
|
</label>
|
|
<label>
|
|
Wachtwoord
|
|
<input type="password" name="wachtwoord" placeholder="Wachtwoord" />
|
|
<small class="verborgen" id="foutmelding">Gebruikersnaam of wachtwoord onjuist</small>
|
|
</label>
|
|
</fieldset>
|
|
|
|
<button>Inloggen</button>
|
|
</form>
|
|
</article>
|
|
</main>
|
|
</body>
|
|
|
|
</html> |