checkbox.html.php
5 years ago
label.html.php
5 years ago
select.html.php
5 years ago
text.html.php
5 years ago
textarea.html.php
5 years ago
text.html.php
13 lines
| 1 | <input |
| 2 | type="text" |
| 3 | class="give-input required" |
| 4 | name="<?php echo $field->getName(); ?>" |
| 5 | id="give-<?php echo $field->getName(); ?>" |
| 6 | placeholder="<?php echo $field->getLabel(); ?>" |
| 7 | <?php if ( $field->isRequired() ) : ?> |
| 8 | required="" aria-required="true" |
| 9 | <?php endif; ?> |
| 10 | tabindex="1" |
| 11 | @attributes |
| 12 | /> |
| 13 |