mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-21 17:33:29 +01:00
13 lines
547 B
Plaintext
13 lines
547 B
Plaintext
<% layout('./layout', { title: "Login" }) %>
|
|
|
|
<div id="content">
|
|
<h1 class="login">Log<br>in<br>to<br><%= it.bonobService.name %></h1>
|
|
<form action="<%= it.loginRoute %>" method="POST">
|
|
<label for="username">Username:</label><br>
|
|
<input type="text" id="username" name="username"><br><br>
|
|
<label for="password">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">
|
|
</form>
|
|
</div> |