HEX
Server: Apache/2.4.52 (Ubuntu)
System: Linux spn-python 5.15.0-89-generic #99-Ubuntu SMP Mon Oct 30 20:42:41 UTC 2023 x86_64
User: arjun (1000)
PHP: 8.1.2-1ubuntu2.20
Disabled: NONE
Upload Files
File: /var/www/html/appointmentbook.me/wp-content/plugins/booknetic/app/Frontend/view/signup/signup.php
<?php

defined( 'ABSPATH' ) or die();

use BookneticApp\Providers\Helpers\Helper;

?>

<div class="booknetic_signup">
    <div class="booknetic_step_1">
        <div class="booknetic_header"><?php echo bkntc__('Sign Up')?></div>
        <form method="post" class="booknetic_form">
            <div class="booknetic_form_element" style="display:flex; justify-content: space-between">
                <div class="booknetic_customer_info" style="">
                    <label for="booknetic_first_name"><?php echo bkntc__('First name')?></label>
                    <input type="text" id="booknetic_first_name" maxlength="100" name="name">
                </div>
                <div class="booknetic_customer_info" style="">
                    <label for="booknetic_last_name"><?php echo bkntc__('Last name')?></label>
                    <input type="text" id="booknetic_last_name" maxlength="100" name="name">
                </div>
            </div>
            <div class="booknetic_form_element">
                <label for="booknetic_email"><?php echo bkntc__('Email')?></label>
                <input type="text" id="booknetic_email" maxlength="100" name="email">
            </div>
            <div class="booknetic_form_element">
                <label for="booknetic_password"><?php echo bkntc__('Password')?></label>
                <input type="password" id="booknetic_password" name="password">
            </div>
            <div>
                <button type="submit" class="booknetic_btn_primary booknetic_signup_btn"><?php echo bkntc__('CONTINUE')?></button>
            </div>
        </form>
        <div class="booknetic_footer">
            <span><?php echo bkntc__('Already have an account?')?></span>
            <a href="<?php echo get_permalink( Helper::getOption('regular_sing_in_page') )?>"><?php echo bkntc__('Sign in')?></a>
        </div>
    </div>
    <div class="booknetic_step_2">
        <div class="booknetic_header"><?php echo bkntc__('Congratulations!')?></div>
        <div class="booknetic_check_your_email">
            <?php echo bkntc__('We need to verify your email.')?><br/>
            <?php echo bkntc__('Please, check your inbox for a confirmation link.')?>
        </div>
        <div class="booknetic_email_success">
            <img src="<?php echo Helper::assets('images/signup-success.svg', 'front-end')?>" alt="">
        </div>
        <div class="booknetic_footer booknetic_resend_activation">
            <span><?php echo bkntc__('Didn\'t receive the email?')?></span>
            <a href="javascript:;" class="booknetic_resend_activation_link"><?php echo bkntc__('Resend again')?></a>
        </div>
    </div>
</div>