Initial commit
This commit is contained in:
41
www/inloggen.html
Normal file
41
www/inloggen.html
Normal file
@@ -0,0 +1,41 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user