added message payments in admin menu
This commit is contained in:
@@ -15,11 +15,11 @@
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
form#email_registration_cipf .define_email_registration {
|
||||
form .textarea {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
form#email_registration_cipf .define_email_registration textarea {
|
||||
form .textarea textarea {
|
||||
resize: vertical;
|
||||
height: 120px;
|
||||
}
|
||||
@@ -62,7 +62,7 @@
|
||||
<input type="hidden" name="action" value="<?php echo $admin_post_email_registration; ?>">
|
||||
<?php wp_nonce_field($nonce_email['_action'], $nonce_email['_name']); ?>
|
||||
|
||||
<div class="define_email_registration">
|
||||
<div class="define_email_registration textarea">
|
||||
<label for="define_email_registration_cipf">email : </label>
|
||||
<textarea id="define_email_registration_cipf" name="email"><?php echo $email_registration['email']; ?></textarea>
|
||||
</div>
|
||||
@@ -80,3 +80,24 @@
|
||||
<input type="submit" value="send"/>
|
||||
</form>
|
||||
|
||||
|
||||
<!--
|
||||
-->
|
||||
<h1>messages apres paiement, avant redirection</h1>
|
||||
<form id="payments_messages_cipf" method="POST" action="<?php echo admin_url( 'admin-post.php' ); ?>">
|
||||
<input type="hidden" name="action" value="<?php echo $admin_post_payment_messages; ?>">
|
||||
<?php wp_nonce_field($nonce_payment_messages['_action'], $nonce_payment_messages['_name']); ?>
|
||||
|
||||
<div class="define_payment_message_cipf textarea">
|
||||
<label for="define_payment_message_success_cipf">paiement réussi : </label>
|
||||
<textarea id="define_payment_message_success_cipf" name="message_success"><?php echo $payment_messages['success']; ?></textarea>
|
||||
</div>
|
||||
|
||||
<div class="define_payment_message_cipf textarea">
|
||||
<label for="define_payment_message_failure_cipf">paiement echec : </label>
|
||||
<textarea id="define_payment_message_failure_cipf" name="message_failure"><?php echo $payment_messages['failure']; ?></textarea>
|
||||
</div>
|
||||
|
||||
<input type="submit" value="send"/>
|
||||
</form>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user