| 1 |
<?php if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly ?> |
| 2 |
<div id="fcom_user_onboard_wrap" class="fcom_user_onboard"> |
| 3 |
<div class="fcom_onboard_header"> |
| 4 |
<div class="fcom_onboard_header_title"> |
| 5 |
<h2><?php echo esc_html($title); ?></h2> |
| 6 |
<p><?php echo wp_kses_post($description); ?></p> |
| 7 |
</div> |
| 8 |
</div> |
| 9 |
<div class="fcom_onboard_body"> |
| 10 |
<div class="fcom_onboard_form"> |
| 11 |
<form method="post" id="fcom_user_accept_form"> |
| 12 |
<input type="hidden" name="action" value="fcom_user_accept_invitation" /> |
| 13 |
<input type="hidden" name="invitation_token" value="<?php echo esc_attr($invitation_token); ?>" /> |
| 14 |
<input type="hidden" name="_fcom_accept_invitation_nonce" value="<?php echo esc_attr(wp_create_nonce('fcom_accept_invitation')); ?>" /> |
| 15 |
<div style="text-align: center;" class="fcom_form-group"> |
| 16 |
<div class="fcom_form_input"> |
| 17 |
<button type="submit" class="fcom_btn fcom_btn_submit fcom_btn_success"><?php esc_html_e('Accept invitation & continue', 'fluent-community'); ?></button> |
| 18 |
</div> |
| 19 |
</div> |
| 20 |
</form> |
| 21 |
</div> |
| 22 |
</div> |
| 23 |
</div> |
| 24 |
|