(text, req)
| 122 | } |
| 123 | |
| 124 | getFormInputLabel (text, req) { |
| 125 | const el = document.createElement('label') |
| 126 | el.appendChild(document.createTextNode(text)) |
| 127 | if (req) el.classList.add('required') |
| 128 | return el |
| 129 | } |
| 130 | |
| 131 | getLabelLike (text, req) { |
| 132 | const el = document.createElement('b') |