Merge branch 'MDL-56250-32-formvalidation' of https://github.com/roperto/moodle
[moodle.git] / admin / templates / setting_configpasswordunmask.mustache
blobbf00ea7bcc208051097541a1b4e26f48c6d21669
1 {{!
2     This file is part of Moodle - http://moodle.org/
4     Moodle is free software: you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation, either version 3 of the License, or
7     (at your option) any later version.
9     Moodle is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
14     You should have received a copy of the GNU General Public License
15     along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
17 {{!
18     @template core_admin/setting_configpasswordunmask
20     Admin password unmask setting template.
22     Context variables required for this template:
23     * name - form element name
24     * size - form element size
25     * value - form element value
26     * id - element id
28     Example context (json):
29     {
30         "name": "test",
31         "id": "test0",
32         "size": "8",
33         "value": "secret"
34     }
36 <div class="form-password">
37     <span data-passwordunmask="wrapper" data-passwordunmaskid="{{ id }}">
38         <noscript>
39             <!-- Backwards compatability for Behat -->
40             <input  type="password"
41                     name="{{ name }}"
42                     id="{{ id }}"
43                     value="{{ value }}"
44                     size="{{ size }}"
45                     >
46         </noscript>
47         <span class="visibleifjs">
48             <span data-passwordunmask="editor">
49                 <!-- The input in the noscript will be moved here as part of the page load -->
50             </span>
51             <a href="#" data-passwordunmask="edit" title="{{ edithint }}">
52                 <span data-passwordunmask="displayvalue">{{> core_form/element-passwordunmask-fill }}</span>
53                 {{# pix }} t/passwordunmask-edit, core, {{# str }} passwordunmaskedithint, form {{/ str }}{{/ pix }}
54             </a>
55             <a href="#" data-passwordunmask="unmask" title="{{ unmaskhint }}">
56                 {{# pix }} t/passwordunmask-reveal, core, {{# str }} passwordunmaskrevealhint, form {{/ str }}{{/ pix }}
57             </a>
58             <span data-passwordunmask="instructions" class="form-text text-muted" style="display: none;">
59                 {{# str }} passwordunmaskinstructions, form {{/ str }}
60             </span>
61         </span>
62     </span>
63 </div>
64 {{#js}}
65 require(['core_form/passwordunmask'], function(PasswordUnmask) {
66     new PasswordUnmask("{{ id }}");
67 });
68 {{/js}}