diff options
| author | klm | 1998-04-02 04:28:54 +0000 |
|---|---|---|
| committer | klm | 1998-04-02 04:28:54 +0000 |
| commit | 8e9d6d14e70513e871a33eac1e85e1e78cf696a8 (patch) | |
| tree | 780395841ff2f5c7369a02ac44490bc0eadc073b | |
| parent | d036732bc4646dc2135f2736c44b3c7dc0de75c2 (diff) | |
| download | mailman-8e9d6d14e70513e871a33eac1e85e1e78cf696a8.tar.gz mailman-8e9d6d14e70513e871a33eac1e85e1e78cf696a8.tar.zst mailman-8e9d6d14e70513e871a33eac1e85e1e78cf696a8.zip | |
Reorganize form so most important thing (unsubscription) is at top,
password handling stuff is consolidated, and buttons say useful
things.
Diffstat (limited to '')
| -rwxr-xr-x | cgi/options | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cgi/options b/cgi/options index d6db572dc..ec28173e1 100755 --- a/cgi/options +++ b/cgi/options @@ -91,18 +91,20 @@ replacements['<mm-hide-subscription-button>'] = list.FormatOptionButton( mm_cfg.ConcealSubscription, 1, user) replacements['<mm-digest-submit>'] = list.FormatButton('setdigest', - 'Submit') + 'Submit My Changes') replacements['<mm-unsubscribe-button>'] = list.FormatButton('unsub', 'Unsubscribe') replacements['<mm-digest-pw-box>'] = list.FormatSecureBox('digpw') replacements['<mm-unsub-pw-box>'] = list.FormatSecureBox('upw') replacements['<mm-old-pw-box>'] = list.FormatSecureBox('opw') replacements['<mm-new-pass-box>'] = list.FormatSecureBox('newpw') replacements['<mm-confirm-pass-box>'] = list.FormatSecureBox('confpw') -replacements['<mm-change-pass-button>'] = list.FormatButton('changepw') +replacements['<mm-change-pass-button>'] = list.FormatButton('changepw', + "Change My Password") replacements['<mm-form-start>'] = list.FormatFormStart('handle_opts', user) replacements['<mm-user>'] = user replacements['<mm-presentable-user>'] = presentable_user -replacements['<mm-email-my-pw>'] = list.FormatButton('emailpw', 'Email my password') +replacements['<mm-email-my-pw>'] = list.FormatButton('emailpw', + 'Email My Password To Me') doc.AddItem(list.ParseTags('options.html', replacements)) |
