Add i8n support for nl-NL (#19)

This commit is contained in:
Simon J
2021-08-14 17:43:21 +10:00
committed by GitHub
parent 43c335ecfc
commit 0d21c34243
12 changed files with 723 additions and 229 deletions

View File

@@ -1,13 +1,13 @@
<% layout('./layout', { title: "Login" }) %>
<% layout('./layout', { title: it.lang("login") }) %>
<div id="content">
<h1 class="login">Log<br>in<br>to<br><%= it.bonobService.name %></h1>
<h1 class="login one-word-per-line"><%= it.lang("logInToBonob") %></h1>
<form action="<%= it.loginRoute %>" method="POST">
<label for="username">Username:</label><br>
<label for="username"><%= it.lang("username") %>:</label><br>
<input type="text" id="username" name="username"><br><br>
<label for="password">Password:</label><br>
<label for="password"><%= it.lang("password") %>:</label><br>
<input type="password" id="password" name="password"><br>
<input type="hidden" name="linkCode" value="<%= it.linkCode %>">
<input type="submit" value="Login" id="submit">
<input type="submit" value="<%= it.lang("login") %>" id="submit">
</form>
</div>