This repository has been archived on 2020-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
gymrooster/views/login.mustache

16 lines
405 B
Plaintext

<!DOCTYPE html>
<html lang="en">
{{> head}}
<body>
{{> nav}}
<main>
<h1>Login</h1>
<form method="post" action="#">
<input placeholder="Gebruikersnaam" type="text" name="username">
<input placeholder="Wachtwoord" type="text" name="password">
<button type="submit">Inloggen</button>
</form>
</main>
{{> footer}}
</body>
</html>