MDL-60061 mod_scorm: add support for drag/drop events
[moodle.git] / lib / form / templates / element-passwordunmask.mustache
blobe5c094813c31c95750ad94f497848e8a5ff65088
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_form/element-passwordunmask
20     Moodle passwordunmask form element template.
22     The purpose of this template is to render a passwordunmask form element.
24     Classes required for JS:
25     * none
27     Data attributes required for JS:
28     * none
30     Context variables required for this template:
31     * element
32         * id
33         * name
34         * value
35         * size
37     Example context (json):
38     {
39         "element": {
40             "id": "example_password_unmask",
41             "name": "example",
42             "value": "Password1!",
43             "size": 40
44         }
45     }
48 {{< core_form/element-template }}
49     {{$ element }}
50         <div data-passwordunmask="wrapper" data-passwordunmaskid="{{ element.id }}">
51             <span data-passwordunmask="editor">
52                 <!-- The input in the noscript will be moved here as part of the page load -->
53                 <span data-passwordunmask="instructions" class="editinstructions">
54                     {{^ element.frozen }}
55                     {{# str }} passwordunmaskinstructions, form {{/ str }}
56                     {{/ element.frozen }}
57                 </span>
58                 <input  type="hidden"
59                         {{# element.frozen }}readonly{{/ element.frozen }}
60                         {{^ element.hardfrozen}} name="{{ element.name }}"{{/ element.hardfrozen }}
61                         id="{{ element.id }}"
62                         value="{{element.value }}"
63                         data-size="{{ element.size }}"
64                         {{# error }}
65                             autofocus aria-describedby="id_error_{{ element.name }}"
66                         {{/ error }}
67                         {{{ attributes }}}
68                         >
69             </span>
70             {{^ element.frozen }}
71             <a href="#" data-passwordunmask="edit" title="{{ edithint }}">
72             {{/ element.frozen }}
73                 <span data-passwordunmask="displayvalue">{{> core_form/element-passwordunmask-fill }}</span>
74             {{^ element.frozen }}
75                 {{# pix }} t/passwordunmask-edit, core, {{ edithint }}{{/ pix }}
76             </a>
77             {{/ element.frozen }}
78             <a href="#" data-passwordunmask="unmask" title="{{ unmaskhint }}">
79                 {{# pix }} t/passwordunmask-reveal, core, {{ edithint }}{{/ pix }}
80             </a>
81         </div>
82     {{/ element }}
83 {{/ core_form/element-template }}
84 {{# js }}
85 require(['core_form/passwordunmask'], function(PasswordUnmask) {
86     new PasswordUnmask("{{ element.id }}");
87 });
88 {{/ js }}