mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-21 02:23:43 +03:00
68 lines
1.8 KiB
PHP
Executable file
68 lines
1.8 KiB
PHP
Executable file
<?php
|
||
|
||
namespace WordPressDotOrg\FiveForTheFuture\View;
|
||
use function WordPressDotOrg\FiveForTheFuture\get_views_path;
|
||
|
||
/**
|
||
* @var array $messages
|
||
* @var bool $complete
|
||
* @var string $directory_url
|
||
*/
|
||
|
||
?>
|
||
|
||
<p>
|
||
<a href="#">Manage an existing pledge</a>
|
||
</p>
|
||
|
||
<?php if ( ! empty( $messages ) ) : ?>
|
||
|
||
<div class="notice notice-error notice-alt">
|
||
<?php foreach ( $messages as $message ) : ?>
|
||
<p><?php echo wp_kses_post( $message ); ?></p>
|
||
<?php endforeach; ?>
|
||
</div>
|
||
|
||
<?php endif; ?>
|
||
|
||
<?php if ( true === $complete ) : ?>
|
||
|
||
<div class="notice notice-success notice-alt">
|
||
<p><?php esc_html_e( 'Thanks for pledging to Five for the Future! Your new pledge profile has been created, and we’ve emailed you a link to confirm your address. Your contributors have also been emailed a link to confirm their participation with your organization.', 'wporg' ); ?></p>
|
||
|
||
<p>
|
||
<?php echo wp_kses_post( sprintf(
|
||
__( 'After those steps are completed, your pledge will appear in <a href="%s">the directory</a>.', 'wporg' ),
|
||
esc_url( $directory_url )
|
||
) ); ?>
|
||
</p>
|
||
|
||
<p>
|
||
<?php echo wp_kses_post(
|
||
__( 'Do you want to hire additional employees to contribute to WordPress? <a href="https://jobs.wordpress.net">Post a job listing on jobs.wordpress.net</a>.', 'wporg' )
|
||
); ?>
|
||
</p>
|
||
</div>
|
||
|
||
<?php else : ?>
|
||
|
||
<form class="pledge-form" id="5ftf-form-pledge-new" action="" method="post">
|
||
<?php
|
||
require get_views_path() . 'inputs-pledge-org-info.php';
|
||
require get_views_path() . 'inputs-pledge-contributors.php';
|
||
require get_views_path() . 'inputs-pledge-org-email.php';
|
||
require get_views_path() . 'inputs-pledge-new-misc.php';
|
||
?>
|
||
|
||
<div>
|
||
<input
|
||
type="submit"
|
||
id="5ftf-pledge-submit"
|
||
name="action"
|
||
value="<?php esc_attr_e( 'Submit Pledge', 'wporg' ); ?>"
|
||
/>
|
||
</div>
|
||
</form>
|
||
|
||
<?php endif; ?>
|