PHP Classes

File: app/templates/signup-form.php

Recommend this page to a friend!
  Classes of Adeleye Ayodeji   Cool Kids Network For WP Plugin   app/templates/signup-form.php   Download  
File: app/templates/signup-form.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Cool Kids Network For WP Plugin
WordPress plugin to manage users with roles
Author: By
Last change:
Date: 27 days ago
Size: 1,051 bytes
 

Contents

Class file image Download
<?php
//check for security
if (!defined('ABSPATH')) {
    exit(
"You are not allowed to access this file.");
}


//check if user is logged in
if (is_user_logged_in()) {
?>
<div class="<?php echo COOL_KIDS_NETWORK_WP_PREFIX; ?>notice-message">
        <?php _e('You are already logged in.', 'cool-kids-network-wp'); ?>
</div>
<?php
   
return;
}

?>

<div class="<?php echo COOL_KIDS_NETWORK_WP_PREFIX; ?>container">
    <form class="<?php echo COOL_KIDS_NETWORK_WP_PREFIX; ?>signup-form">
        <label>
            <?php _e('Email:', 'cool-kids-network-wp'); ?>
</label>
        <input type="email" name="email" required placeholder="<?php _e('Enter your email', 'cool-kids-network-wp'); ?>">

        <button type="submit">
            <?php _e('Sign Up', 'cool-kids-network-wp'); ?>
</button>

        <p>
            <?php _e('or login', 'cool-kids-network-wp'); ?>
<a href="<?php echo esc_url(site_url('/sign-in')); ?>">
                <?php _e('here', 'cool-kids-network-wp'); ?>
</a>
        </p>

        <div class="<?php echo COOL_KIDS_NETWORK_WP_PREFIX; ?>notice-message" style="display: none;"></div>
    </form>
</div>