mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-25 04:13:44 +03:00
35 lines
594 B
PHP
35 lines
594 B
PHP
![]() |
<?php
|
||
|
namespace WordPressDotOrg\FiveForTheFuture\View;
|
||
|
|
||
|
/** @var bool $editable */
|
||
|
/** @var array $data */
|
||
|
/** @var array $contributors */
|
||
|
?>
|
||
|
|
||
|
<?php if ( empty( $contributors ) ) : ?>
|
||
|
|
||
|
<div class="form-field">
|
||
|
<label for="5ftf-pledge-contributors">
|
||
|
<?php esc_html_e( 'Contributors', 'wordpressorg' ); ?>
|
||
|
</label>
|
||
|
<input
|
||
|
type="text"
|
||
|
class="large-text"
|
||
|
id="5ftf-pledge-contributors"
|
||
|
name="pledge-contributors"
|
||
|
value=""
|
||
|
required
|
||
|
/>
|
||
|
<p>
|
||
|
<!-- Instructions for inputting wporg usernames -->
|
||
|
</p>
|
||
|
</div>
|
||
|
|
||
|
<?php else : ?>
|
||
|
|
||
|
<div class="5ftf-contributors">
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<?php endif; ?>
|