summaryrefslogtreecommitdiffstats
path: root/textw/userauth_text.py
diff options
context:
space:
mode:
authorbfox <bfox>2000-09-25 15:16:03 +0000
committerbfox <bfox>2000-09-25 15:16:03 +0000
commit4ce008fb82f980f164705047cea7c75f9a757e8c (patch)
tree4a96fde6bce2640f6fed2e4995ca534e0c0e95ef /textw/userauth_text.py
parent8e346b2e6f37914428d34bfcdd36a9e5da177de6 (diff)
downloadanaconda-4ce008fb82f980f164705047cea7c75f9a757e8c.tar.gz
anaconda-4ce008fb82f980f164705047cea7c75f9a757e8c.tar.xz
anaconda-4ce008fb82f980f164705047cea7c75f9a757e8c.zip
Reordered the add user screen to be like GUI mode.
Diffstat (limited to 'textw/userauth_text.py')
-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)