2019-10-04 22:35:02 +03:00
|
|
|
<?php
|
|
|
|
namespace WordPressDotOrg\FiveForTheFuture\View;
|
|
|
|
|
2019-10-09 01:29:35 +03:00
|
|
|
/** @var array $data */
|
|
|
|
/** @var bool $readonly */
|
2019-10-04 22:35:02 +03:00
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="form-field">
|
|
|
|
<label for="5ftf-pledge-contributors">
|
2019-10-25 17:57:33 +03:00
|
|
|
<?php esc_html_e( 'Contributor Usernames', 'wordpressorg' ); ?>
|
2019-10-04 22:35:02 +03:00
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id="5ftf-pledge-contributors"
|
2019-10-22 01:43:20 +03:00
|
|
|
name="pledge-contributors"
|
|
|
|
value="<?php echo esc_attr( $data['pledge-contributors'] ); ?>"
|
2019-10-04 22:35:02 +03:00
|
|
|
required
|
2019-10-09 01:29:35 +03:00
|
|
|
aria-describedby="5ftf-pledge-contributors-help"
|
2019-10-04 22:35:02 +03:00
|
|
|
/>
|
2019-10-09 01:29:35 +03:00
|
|
|
<p id="5ftf-pledge-contributors-help">
|
2019-10-25 17:57:33 +03:00
|
|
|
<?php esc_html_e( 'Separate each WordPress.org username with a comma.', 'wordpressorg' ); ?>
|
2019-10-04 22:35:02 +03:00
|
|
|
</p>
|
|
|
|
</div>
|