summaryrefslogtreecommitdiffstats
path: root/textw
diff options
context:
space:
mode:
Diffstat (limited to 'textw')
-rw-r--r--textw/userauth_text.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/textw/userauth_text.py b/textw/userauth_text.py
index 5a5fb41fa..e3662d4d6 100644
--- a/textw/userauth_text.py
+++ b/textw/userauth_text.py
@@ -64,9 +64,9 @@ class UsersWindow:
userid = Entry (9, user["id"])
currentid = user["id"]
- fullname = Entry (20, user["name"], scroll = 1)
pass1 = Entry (10, user["password"], password = 1)
pass2 = Entry (10, user["password"], password = 1)
+ fullname = Entry (20, user["name"], scroll = 1)
if edit:
title = _("Edit User")
@@ -78,9 +78,9 @@ class UsersWindow:
while 1:
(rc, ent) = EntryWindow (self.screen, title, text,
[ (_("User ID"), userid),
- (_("Full Name"), fullname),
(_("Password"), pass1),
- (_("Password (confirm)"), pass2) ],
+ (_("Password (confirm)"), pass2),
+ (_("Full Name"), fullname) ],
buttons = [ (_("OK"), "ok"), (cancelText, "cancel") ],
help = helptag)