mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-21 02:23:43 +03:00

Use the proper dialog behavior for submitting an email to generate a manage link. Fixes #98.
14 lines
334 B
PHP
14 lines
334 B
PHP
<?php
|
|
|
|
namespace WordPressDotOrg\FiveForTheFuture\View;
|
|
|
|
defined( 'WPINC' ) || die();
|
|
|
|
?>
|
|
<div class="edit-pledge-wrapper">
|
|
<button id="toggle-management-link-form" class="button button-link">
|
|
<span class="dashicons dashicons-edit" aria-hidden="true"></span>
|
|
<?php esc_html_e( 'Edit Pledge', 'wporg-5ftf' ); ?>
|
|
</button>
|
|
</div>
|