diff options
author | equinox <equinox@diac24.net> | 2011-09-27 05:48:47 +0200 |
---|---|---|
committer | equinox <equinox@diac24.net> | 2011-09-27 05:48:47 +0200 |
commit | 230438d7c287a370422ca42b7bd6ef977475ef70 (patch) | |
tree | 2e1775df5e6d13a3cb1df5dca84bc61e10f8ec29 /templates | |
parent | 51af1891d79fd39db43f3164dc21773f6ef6ca85 (diff) |
templates: fix image sizes
Diffstat (limited to 'templates')
-rw-r--r-- | templates/layout.xi | 2 | ||||
-rw-r--r-- | templates/select.html | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/templates/layout.xi b/templates/layout.xi index e14e21b..290e7b0 100644 --- a/templates/layout.xi +++ b/templates/layout.xi @@ -25,7 +25,7 @@ <body id="formcont" py:attrs="select('@*')"> ${select('sub:infobox')} <div> - <img id="logo" src="static/ldap.png" alt="subdap"/> + <img id="logo" src="static/ldap.png" alt="subdap" width="192" height="230"/> ${select('*')} </div> </body> diff --git a/templates/select.html b/templates/select.html index 1391431..01f7341 100644 --- a/templates/select.html +++ b/templates/select.html @@ -14,8 +14,10 @@ <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"/> sublab.org wiki</a></p> - <p class="app"><a href="pwchange?username=${user['cn']}"><img src="${url('static/app_password.png')}" alt="pwchange"/> Passwort ändern</a></p> + <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> |