summaryrefslogtreecommitdiff
path: root/skins/xstyle
diff options
context:
space:
mode:
authorAndreas Brachold <vdr07@deltab.de>2009-11-07 18:38:22 +0000
committerAndreas Brachold <vdr07@deltab.de>2009-11-07 18:38:22 +0000
commitfac412765bdf7d2dc96b64621df5d6b2b285efdb (patch)
tree459c25096295efdcd1e9356a1475ac37655d6621 /skins/xstyle
parent454652cfad1e4f5e501319b7a10985f96376985c (diff)
downloadxxv-fac412765bdf7d2dc96b64621df5d6b2b285efdb.tar.gz
xxv-fac412765bdf7d2dc96b64621df5d6b2b285efdb.tar.bz2
* stone/snow/blue/lcars/xstyle add formbased login
* jason: remove session state from preview window stone/snow/blue/lcars rename style.css depends skin name
Diffstat (limited to 'skins/xstyle')
-rw-r--r--skins/xstyle/login.tmpl51
1 files changed, 51 insertions, 0 deletions
diff --git a/skins/xstyle/login.tmpl b/skins/xstyle/login.tmpl
new file mode 100644
index 0000000..92f2c43
--- /dev/null
+++ b/skins/xstyle/login.tmpl
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="<?% charset %?>"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<?% lang = locale.split('_') %?>
+<html xmlns="http://www.w3.org/1999/xhtml" <?% IF lang.1 %?>xml:lang="<?% lang.0 %?>" lang="<?% lang.0 %?>"<?% ELSE %?>xml:lang="en" lang="en"<?% END %?>>
+<head>
+ <link rel="stylesheet" type="text/css" href="style-<?% skin %?>.css" media="all" />
+ <link rel="stylesheet" type="text/css" href="print.css" media="print" />
+ <link rel="shortcut icon" href="favicon.ico" />
+ <title><?% IF param.title.defined;param.title;ELSE %?>XXV<?% END %?></title>
+ <meta name="generator" content="XXV System - Version: <?% version %?>" />
+ <meta http-equiv="content-type" content="text/html; charset=<?% charset %?>" />
+ <meta http-equiv="content-script-type" content="text/javascript" />
+ <meta http-equiv="cache-control" content="no-cache" />
+ <meta http-equiv="pragma" content="no-cache" />
+ <meta name="robots" content="noindex,noarchive,nofollow" />
+</head>
+<body>
+<form method="post" action="?cmd=login">
+ <input type="hidden" name="__action" value="save" />
+ <h1><?% gettext("Authorization required") %?></h1>
+ <table border='0' width='95%' style="margin-top:15px">
+ <tr><td width="150" height="1"></td><td width="245" align="right"><img src="images/xxv.gif" /></td></tr>
+ <tr>
+ <td>
+ <?% gettext("Username") %?> :
+ </td>
+ <td>
+ <input style="width:245px;" type="text" name="__name" value="" />
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <?% gettext("Password") %?> :
+ </td>
+ <td>
+ <input style="width:245px;" type="password" name="__password" value="" />
+ </td>
+ </tr>
+ <tr>
+ <td>
+ &nbsp;
+ </td>
+ <td align="right">
+ <input type="submit" value="<?% gettext("Login") %?>" />
+ </td>
+ </tr>
+ </table>
+</form>
+</body>
+</html>