diff options
| author | 2016-10-04 21:06:37 +0200 | |
|---|---|---|
| committer | 2016-10-04 21:06:37 +0200 | |
| commit | f81c441920d2de087099c85f0119e823d15225c4 (patch) | |
| tree | 738cf6936b35baa18d4e63ab921fa1c0b344942e /app/views/user | |
| parent | 4d467277058bb016db072b7f30b587fa9347a729 (diff) | |
Fix bug language option for new user
https://github.com/FreshRSS/FreshRSS/issues/1273
Diffstat (limited to 'app/views/user')
| -rw-r--r-- | app/views/user/manage.phtml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/user/manage.phtml b/app/views/user/manage.phtml index aab3aa4c4..a32247d14 100644 --- a/app/views/user/manage.phtml +++ b/app/views/user/manage.phtml @@ -3,7 +3,7 @@ <div class="post"> <a href="<?php echo _url('index', 'index'); ?>"><?php echo _t('gen.action.back_to_rss_feeds'); ?></a> - <form method="post" action="<?php echo _url('user', 'create'); ?>"> + <form method="post" action="<?php echo _url('user', 'create'); ?>" autocomplete="off"> <input type="hidden" name="_csrf" value="<?php echo FreshRSS_Auth::csrfToken(); ?>" /> <legend><?php echo _t('admin.user.create'); ?></legend> @@ -30,7 +30,7 @@ <label class="group-name" for="new_user_passwordPlain"><?php echo _t('admin.user.password_form'); ?></label> <div class="group-controls"> <div class="stick"> - <input type="password" id="new_user_passwordPlain" name="new_user_passwordPlain" autocomplete="off" pattern=".{7,}" /> + <input type="password" id="new_user_passwordPlain" name="new_user_passwordPlain" autocomplete="new-password" pattern=".{7,}" /> <a class="btn toggle-password" data-toggle="new_user_passwordPlain"><?php echo _i('key'); ?></a> </div> <?php echo _i('help'); ?> <?php echo _t('admin.user.password_format'); ?> |
