mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-22 01:43:29 +01:00
11 lines
486 B
Plaintext
11 lines
486 B
Plaintext
<% layout('./layout', { title: "Login" }) %>
|
|
|
|
<div id="content">
|
|
<h1>Log in to <%= it.bonobService.name %></h1>
|
|
<form action="<%= it.loginRoute %>" method="POST">
|
|
<label for="username">Username:</label><input type="text" id="username" name="username"><br>
|
|
<label for="password">Password:</label><input type="text" id="password" name="password"><br>
|
|
<input type="hidden" name="linkCode" value="<%= it.linkCode %>">
|
|
<input type="submit" value="Login">
|
|
</form>
|
|
</div> |