2019-10-04 22:35:02 +03:00
|
|
|
<?php
|
|
|
|
namespace WordPressDotOrg\FiveForTheFuture\View;
|
|
|
|
|
2019-10-09 01:29:35 +03:00
|
|
|
/** @var array $data */
|
2019-11-20 18:01:00 +02:00
|
|
|
/** @var bool $is_manage */
|
2019-10-04 22:35:02 +03:00
|
|
|
?>
|
|
|
|
|
|
|
|
<div class="form-field">
|
|
|
|
<label for="5ftf-pledge-contributors">
|
2019-11-23 20:24:37 +02:00
|
|
|
<?php esc_html_e( 'Contributor Usernames', 'wporg-5ftf' ); ?>
|
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"
|
2019-11-02 15:13:25 +02:00
|
|
|
placeholder="sanguine.zoe206, captain-mal, kayleefixesyou"
|
2019-10-22 01:43:20 +03:00
|
|
|
value="<?php echo esc_attr( $data['pledge-contributors'] ); ?>"
|
2019-11-20 18:01:00 +02:00
|
|
|
<?php echo $is_manage ? '' : '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-11-23 20:24:37 +02:00
|
|
|
<?php esc_html_e( 'Separate each WordPress.org username with a comma.', 'wporg-5ftf' ); ?>
|
2019-10-04 22:35:02 +03:00
|
|
|
</p>
|
|
|
|
</div>
|