blob: 5fd322f190ed403e2f23d7fedb6c8d187352f7b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:py="http://genshi.edgewall.org/"
xmlns:sub="http://local.sublab.org/subdap/xmlns-templates"
xmlns:xi="http://www.w3.org/2001/XInclude">
<xi:include href="layout.xi"/>
<head>
<title>login</title>
</head>
<sub:infobox py:if="message.has_key('pwchangeok')">
<b>Your password has been changed.</b><br />
— please note that it may take a few minutes for Kerberos to update
its <a href="http://en.wikipedia.org/wiki/File:RomanCerberus.JPG">three heads</a>. At any moment, either your old password or your new
password will work.
</sub:infobox>
<sub:bodyform>
<div class="cont">
Hallo ${user['cn']}!
<p class="app"><a href="https://wiki.sublab.org/auth_subdap.php?${tgts['wiki']}">
<img src="${url('static/app_wiki.png')}" alt="wiki" width="48" height="48"/> sublab.org wiki</a></p>
<p class="app"><a href="pwchange?username=${user['cn']}">
<img src="${url('static/app_password.png')}" alt="pwchange" width="24" height="24"/> Passwort ändern</a></p>
</div>
</sub:bodyform>
</html>
|