2019-10-04 22:35:02 +03:00
|
|
|
<?php
|
|
|
|
namespace WordPressDotOrg\FiveForTheFuture\View;
|
|
|
|
|
|
|
|
use function WordPressDotOrg\FiveForTheFuture\get_views_path;
|
|
|
|
|
|
|
|
/** @var array $messages */
|
|
|
|
/** @var bool $updated */
|
|
|
|
?>
|
|
|
|
|
2019-10-28 17:47:56 +02:00
|
|
|
<form class="pledge-form" id="5ftf-form-pledge-manage" action="" method="post" enctype="multipart/form-data">
|
2019-10-04 22:35:02 +03:00
|
|
|
<?php
|
|
|
|
require get_views_path() . 'inputs-pledge-org-info.php';
|
2019-10-25 06:06:47 +03:00
|
|
|
require get_views_path() . 'manage-contributors.php';
|
2019-10-09 01:29:35 +03:00
|
|
|
require get_views_path() . 'inputs-pledge-org-email.php';
|
2019-10-04 22:35:02 +03:00
|
|
|
?>
|
|
|
|
|
|
|
|
<div>
|
2019-10-09 01:29:35 +03:00
|
|
|
<input
|
|
|
|
type="submit"
|
|
|
|
id="5ftf-pledge-submit"
|
|
|
|
name="action"
|
2019-11-23 11:34:19 +02:00
|
|
|
value="<?php esc_attr_e( 'Update Pledge', 'wporg-5ftf' ); ?>"
|
2019-10-09 01:29:35 +03:00
|
|
|
/>
|
2019-10-04 22:35:02 +03:00
|
|
|
</div>
|
|
|
|
</form>
|