mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-21 02:23:43 +03:00
23 lines
411 B
PHP
23 lines
411 B
PHP
![]() |
<?php
|
||
|
namespace WordPressDotOrg\FiveForTheFuture\View;
|
||
|
|
||
|
/** @var bool $editable */
|
||
|
/** @var array $data */
|
||
|
?>
|
||
|
|
||
|
<div class="form-field">
|
||
|
<p>
|
||
|
<!-- Statement of agreement to pledge, link to further info maybe? -->
|
||
|
</p>
|
||
|
|
||
|
<input
|
||
|
type="checkbox"
|
||
|
id="5ftf-pledge-agree"
|
||
|
name="pledge-agree"
|
||
|
required
|
||
|
/>
|
||
|
<label for="5ftf-pledge-agree">
|
||
|
<?php esc_html_e( 'I agree', 'wordpressorg' ); ?>
|
||
|
</label>
|
||
|
</div>
|