r9406 - apps/gobi/trunk/code/Page
| Newsgroups | gmane.comp.java.helma.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: hannes
Date: 2008-12-10 22:25:43 +0100 (Wed, 10 Dec 2008)
New Revision: 9406
Modified:
apps/gobi/trunk/code/Page/PageActions.js
Log:
Add colon and space to login page labels
Details at http://dev.helma.org/trac/helma/changeset/9406
Modified: apps/gobi/trunk/code/Page/PageActions.js
===================================================================
--- apps/gobi/trunk/code/Page/PageActions.js 2008-12-10 20:53:45 UTC (rev 9405)
+++ apps/gobi/trunk/code/Page/PageActions.js 2008-12-10 21:25:43 UTC (rev 9406)
@@ -585,9 +585,9 @@
Html.form({method: "post", action: this.href("login")});
res.write("<p><b>"+msg("login_please")+"</b></p>");
var table = new Html.TableWriter(2, {td: {style: "padding-bottom: 6px;"}});
- table.write(msg("login_username"));
+ table.write(msg("login_username") + ": ");
table.write(Html.Input({name: "name", value: req.data.name}));
- table.write(msg("login_password"));
+ table.write(msg("login_password") + ": ");
table.write(Html.Password({name: "password"}));
table.write();
table.write(Html.Submit({name: "login", value: "Go"}));