|
9 | 9 | </head> |
10 | 10 | <body> |
11 | 11 | <div class="modal"> |
12 | | - <h2>Create Environment in Project</h2> |
| 12 | + <h2>Import Environment to Project</h2> |
13 | 13 |
|
14 | 14 | <!-- Project Path --> |
15 | | - <label>Project Path:</label> |
| 15 | + <label for="projectPath">Project Path:</label> |
16 | 16 | <div class="single-input-container"> |
17 | | - <select id="projectPath"></select> |
| 17 | + <select id="projectPath" aria-label="Project Path"></select> |
18 | 18 | </div> |
19 | 19 |
|
20 | 20 | <!-- Env File --> |
21 | | - <label>Env File:</label> |
| 21 | + <label for="envFileInput">Env File:</label> |
22 | 22 | <div class="single-input-container"> |
23 | | - <input aria-label="envFileInput" type="text" id="envFileInput" placeholder="Select Env File" /> |
24 | | - <button type="button" class="select-button" id="btnSelectEnv">Select</button> |
| 23 | + <input |
| 24 | + type="text" |
| 25 | + id="envFileInput" |
| 26 | + placeholder="Select Env File" |
| 27 | + aria-label="Environment File Path" |
| 28 | + /> |
| 29 | + <button |
| 30 | + type="button" |
| 31 | + class="select-button" |
| 32 | + id="btnSelectEnv" |
| 33 | + aria-label="Select Environment File" |
| 34 | + >Select</button> |
25 | 35 | </div> |
26 | 36 |
|
27 | 37 | <!-- Compiler/Testsuite Labels --> |
28 | | - <div class="label-row"> |
| 38 | + <div class="label-row" aria-label="Compiler and Testsuite Labels"> |
29 | 39 | <div>Select Compiler</div> |
30 | 40 | <div>Select Testsuite</div> |
31 | 41 | <div></div> |
32 | 42 | </div> |
33 | 43 |
|
34 | 44 | <!-- Compiler/Testsuite Rows --> |
35 | | - <div id="compilerContainer"></div> |
| 45 | + <div id="compilerContainer" aria-label="Compiler and Testsuite Container"></div> |
36 | 46 | <div class="double-add-row"> |
37 | | - <button type="button" class="add-button" id="btnAddRow">➕</button> |
| 47 | + <button |
| 48 | + type="button" |
| 49 | + class="add-button" |
| 50 | + id="btnAddRow" |
| 51 | + aria-label="Add Compiler and Testsuite Row" |
| 52 | + >➕</button> |
38 | 53 | </div> |
39 | 54 |
|
40 | | - <!-- OK/Cancel Buttons --> |
| 55 | + <!-- OK / Cancel --> |
41 | 56 | <div class="button-container"> |
42 | | - <button type="button" class="cancel-button" id="btnCancel">Cancel</button> |
43 | | - <button type="button" class="primary-button" id="btnSubmit">OK</button> |
| 57 | + <button |
| 58 | + type="button" |
| 59 | + class="cancel-button" |
| 60 | + id="btnCancel" |
| 61 | + aria-label="Cancel" |
| 62 | + >Cancel</button> |
| 63 | + <button |
| 64 | + type="button" |
| 65 | + class="primary-button" |
| 66 | + id="btnSubmit" |
| 67 | + aria-label="OK" |
| 68 | + >OK</button> |
44 | 69 | </div> |
45 | 70 | </div> |
46 | 71 |
|
47 | | - <!-- replaced at runtime (with nonce) --> |
| 72 | + <!-- replaced at runtime with a nonce attribute --> |
48 | 73 | <script src="{{ scriptUri }}"></script> |
49 | 74 | </body> |
50 | 75 | </html> |
0 commit comments