1 | <div class="dijitDialog" |
---|
2 | role="dialog" |
---|
3 | aria-labelledby="${id}_title"> |
---|
4 | <div data-dojo-attach-point="titleBar" |
---|
5 | class="dijitDialogTitleBar"> |
---|
6 | <span data-dojo-attach-point="titleNode" |
---|
7 | class="dijitDialogTitle" |
---|
8 | id="${id}_title" role="heading" level="1"></span> |
---|
9 | <span data-dojo-attach-point="closeButtonNode" |
---|
10 | class="dijitDialogCloseIcon" |
---|
11 | data-dojo-attach-event="ondijitclick: onCancel" |
---|
12 | title="${buttonCancel}" role="button" tabindex="0"> |
---|
13 | <span data-dojo-attach-point="closeText" |
---|
14 | class="closeText" title="${buttonCancel}">x</span> |
---|
15 | </span> |
---|
16 | </div> |
---|
17 | <div class="dijitDialogPaneContent"> |
---|
18 | <form data-dojo-type="dijit/form/Form" |
---|
19 | data-dojo-attach-point="loginForm" |
---|
20 | data-dojo-attach-event="onSubmit:onLogin"> |
---|
21 | <div> |
---|
22 | <label for="username" |
---|
23 | class="qedLabel">Username</label> |
---|
24 | <div name="username" |
---|
25 | class="qedField" |
---|
26 | data-dojo-type="dijit/form/ValidationTextBox" |
---|
27 | data-dojo-props="required: true"></div> |
---|
28 | </div> |
---|
29 | <div> |
---|
30 | <label for="password" class="qedLabel">Password</label> |
---|
31 | <div name="password" |
---|
32 | class="qedField" |
---|
33 | data-dojo-type="dijit/form/ValidationTextBox" |
---|
34 | data-dojo-props="required: true"></div> |
---|
35 | </div> |
---|
36 | <div data-dojo-type="dijit/form/Button" |
---|
37 | type="submit" |
---|
38 | data-dojo-attach-event="onLogin">Login</div> |
---|
39 | <div data-dojo-type="dijit/form/Button" |
---|
40 | data-dojo-attach-event="onCancel">Cancel</div> |
---|
41 | </form> |
---|
42 | <!-- Container node is required, otherwise |
---|
43 | root is taken and emptied |
---|
44 | --> |
---|
45 | <div data-dojo-attach-point="containerNode"></div> |
---|
46 | </div> |
---|
47 | </div> |
---|
48 | |
---|
49 | |
---|
50 | |
---|
51 | |
---|