Update year in copyright lines
[Sone.git] / src / main / resources / templates / login.html
1 <%include include/head.html>
2
3         <div class="page-id hidden">login</div>
4
5         <%if !sones.empty>
6                 <h1><%= Page.Login.Page.Title|l10n|html></h1>
7                 <form method="post">
8                         <input type="hidden" name="formPassword" value="<% formPassword|html>" />
9                         <label for="sone-id"><%= Page.Login.Label.SelectSone|l10n|html></label>
10                         <select name="sone-id">
11                                 <option disabled="disabled"><%= Page.Login.Option.NoSone|l10n|html></option>
12                                 <%foreach sones sone>
13                                         <option value="<% sone.id|html>"><% sone.niceName|html> (<% sone.name|html>)</option>
14                                 <%/foreach>
15                         </select>
16                         <button type="submit">Select</button>
17                 </form>
18         <%/if>
19
20         <%include include/createSone.html>
21
22 <%include include/tail.html>