2144e2f78b3a9f3901caec380ce7d05916558238
[WoTNS.git] / src / main / resources / templates / index.html
1 <%include include/head.html>
2 <h1>WoTNS</h1>
3 <p>Yay, Index!</p>
4
5 <%foreach enabledIdentities identity>
6         <%first>
7                 <h1>Enabled Identities</h1>
8         <%/first>
9         <form action="enableIdentity.html" method="post">
10                 <input type="hidden" name="formPassword" value="<%formPassword|html>"/>
11                 <input type="hidden" name="ownIdentity" value="<%identity.id|html>"/>
12                 <a href="manage.html?ownIdentity=<%identity.id|html>"><%identity.nickname|html></a>
13                 <button type="submit" name="disable">Disable</button>
14         </form>
15 <%/foreach>
16
17 <%foreach disabledIdentities identity>
18         <%first>
19                 <h1>Disabled Identities</h1>
20         <%/first>
21         <form action="enableIdentity.html" method="post">
22                 <input type="hidden" name="formPassword" value="<%formPassword|html>"/>
23                 <input type="hidden" name="ownIdentity" value="<%identity.id|html>"/>
24                 <%identity.nickname|html>
25                 <button type="submit" name="enable">Enable</button>
26         </form>
27 <%/foreach>
28 <%include include/tail.html>