diff options
author | Michael Brückner <mb (plus) vdr (at) gekrumbel (dot) de> | 2007-04-27 13:55:00 +0000 |
---|---|---|
committer | Michael Brückner <mb (plus) vdr (at) gekrumbel (dot) de> | 2007-04-27 13:55:00 +0000 |
commit | 4eaf2d9d55cf668d1cbc7676e5bd44bb6eb69d3b (patch) | |
tree | dd1c4aeacc3a27aa48c65480cfe674e46546bfe0 /pages/login.ecpp | |
parent | 28f384b5d1e897ee1f0642970c5edfd5d0d78f7d (diff) | |
download | vdr-plugin-live-4eaf2d9d55cf668d1cbc7676e5bd44bb6eb69d3b.tar.gz vdr-plugin-live-4eaf2d9d55cf668d1cbc7676e5bd44bb6eb69d3b.tar.bz2 |
- added actions für searchtimer & timer in submenu
- resized logo_login.png
- beautified login page
Diffstat (limited to 'pages/login.ecpp')
-rw-r--r-- | pages/login.ecpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pages/login.ecpp b/pages/login.ecpp index 7b4249e..c564b9b 100644 --- a/pages/login.ecpp +++ b/pages/login.ecpp @@ -40,7 +40,7 @@ if (logged_in || !LiveSetup().UseAuth()) return reply.redirect("whats_on.html"); <& pageelems.ajax_js &> </head> <body> - <div style="width: 440px; margin: 0 auto; text-align: center; padding: 20px"> + <div style="width: 420px; margin: 0 auto; text-align: center; padding: 20px"> <div class="boxheader"><div><div>VDR Live Login</div></div></div> <div style="border: 1px solid black; padding: 15px"> <img src="logo_login.png" alt="VDR Live"></img> @@ -48,18 +48,18 @@ if (logged_in || !LiveSetup().UseAuth()) return reply.redirect("whats_on.html"); <input type="hidden" name="action" value="login" /> <table class="login"> <tr> - <td><$ tr("User") $></td> - <td><input type="text" name="login" value="<$ login $>" /></td> + <td><$ tr("User") $>:</td> + <td><input type="text" name="login" value="<$ login $>" size="15" maxlength="15" /></td> <td> </td> </tr> <tr> - <td><$ tr("Password") $></td> - <td><input type="password" name="password" value="<$ password $>" /></td> + <td><$ tr("Password") $>:</td> + <td><input type="password" name="password" value="<$ password $>" size="15" maxlength="15" /></td> <td><button type="submit" class="blue"><$ tr("Login") $></td> </tr> </table> </form> - <div style="color: red; margin: 0 auto; padding: 10px"> + <div style="color: red; margin: 0 auto;"> <$ message $> </div> </div> |