1<?php
2// (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3//
4// All Rights Reserved. See copyright.txt for details and a complete list of authors.
5// Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6// $Id$
7
8function prefs_desactive_list()
9{
10	return [
11		'desactive_login_autocomplete' => [
12			'name' => tra("Disable browser's autocomplete feature for username and password fields"),
13			'description' => tra('Use to deactivate the autocomplete in the log-in box. The autocomplete features can be optionally set in the user’s browser to remember the form input and proposes the remember the password. If enabled, the user log-in name and password cannot be remembered. You should enable this feature for highly secure sites.'),
14			'type' => 'flag',
15			'default' => 'n',
16		],
17	];
18}
19