summaryrefslogtreecommitdiff
path: root/UI/get_password.html
diff options
context:
space:
mode:
authoreinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-06-22 05:01:13 +0000
committereinhverfr <einhverfr@4979c152-3d1c-0410-bac9-87ea11338e46>2007-06-22 05:01:13 +0000
commit170174b76910a2916db1a9208597a428ebb9b40d (patch)
treeea09ceee935ec631d97786bd827cff9dcad2d2eb /UI/get_password.html
parent426e5a7263770cee8138d44a8c66a257ed7665de (diff)
Added version of Aurynn's reconciliation logic
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/trunk@1302 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'UI/get_password.html')
-rw-r--r--UI/get_password.html45
1 files changed, 45 insertions, 0 deletions
diff --git a/UI/get_password.html b/UI/get_password.html
new file mode 100644
index 00000000..4f3bfc9a
--- /dev/null
+++ b/UI/get_password.html
@@ -0,0 +1,45 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+ <title><?lsmb titlebar ?></title>
+ <meta http-equiv="Pragma" content="no-cache" />
+ <meta http-equiv="Expires" content="-1" />
+ <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
+ <link rel="stylesheet" href="css/<?lsmb stylesheet ?>" type="text/css" />
+ <link rel="stylesheet" href="UI/employee.css" type="text/css" />
+
+ <meta http-equiv="content-type"
+ content="text/html; charset=utf-8" />
+ <meta name="robots" content="noindex,nofollow" />
+<script language="JavaScript" type="text/javascript">
+<!--
+function focus_input(){
+ document.getpassword.password.focus();
+}
+// End -->
+</script>
+</head>
+<body onload="focus_input()">
+<?lsmb IF sessionexpired ?>
+ <p><span class="warning_label">
+ <?lsmb text('Session expired!') ?>
+ </span></p>
+<?lsmb END ?>
+<form method="post" action="<?lsmb script ?>" name="getpassword">
+
+<div>
+ <span align=right class="label"> <?lsmb text('Password') ?> </span>
+ <span class="input"><input type="password" name="password" size="30"/>
+ </span>
+ <span class="input"><button type="submit" value="continue">
+ <?lsmb text('Continue') ?>
+ </button></span>
+</div>
+
+<?lsmb FOREACH var = hidden ?>
+<input name="<?lsmb var.name ?>" type="hidden" value="<?lsmb var.value ?>" />
+</form>
+
+</body>
+</html>