File: /www/wwwroot/wwwshoopermcom/application/views/auth/register.php
<?php defined('BASEPATH') or exit('No direct script access allowed'); ?>
<!-- Wrapper -->
<div id="wrapper">
<div class="container">
<div class="auth-container">
<div class="auth-box">
<div class="row">
<div class="col-12">
<h1 class="title"><?php echo trans("register"); ?></h1>
<!-- form start -->
<?php if ($recaptcha_status) {
echo form_open('register-post', ['id' => 'form_validate', 'class' => 'validate_terms',
'onsubmit' => "var serializedData = $(this).serializeArray();var recaptcha = ''; $.each(serializedData, function (i, field) { if (field.name == 'g-recaptcha-response') {recaptcha = field.value;}});if (recaptcha.length < 5) { $('.g-recaptcha>div').addClass('is-invalid');return false;} else { $('.g-recaptcha>div').removeClass('is-invalid');}"]);
} else {
echo form_open('register-post', ['id' => 'form_validate', 'class' => 'validate_terms']);
} ?>
<div class="social-login">
<?php $this->load->view("partials/_social_login", ['or_text' => trans("register_with_email")]); ?>
</div>
<!-- include message block -->
<div id="result-register">
<?php $this->load->view('partials/_messages'); ?>
</div>
<div class="spinner display-none spinner-activation-register">
<div class="bounce1"></div>
<div class="bounce2"></div>
<div class="bounce3"></div>
</div>
<div class="form-group">
<input type="text" name="username" class="form-control auth-form-input" placeholder="<?php echo trans("username"); ?>" value="<?php echo old("username"); ?>" maxlength="<?php echo $this->username_maxlength; ?>" required>
</div>
<div class="form-group">
<input type="text" name="first_name" class="form-control auth-form-input" placeholder="<?php echo trans("first_name"); ?>" value="<?php echo old("first_name"); ?>" maxlength="255" required>
</div>
<div class="form-group">
<input type="text" name="last_name" class="form-control auth-form-input" placeholder="<?php echo trans("last_name"); ?>" value="<?php echo old("last_name"); ?>" maxlength="255" required>
</div>
<div class="form-group">
<input type="email" name="email" class="form-control auth-form-input" placeholder="<?php echo trans("email_address"); ?>" value="<?php echo old("email"); ?>" maxlength="255" required>
</div>
<div class="form-group">
<input type="password" name="password" class="form-control auth-form-input" placeholder="<?php echo trans("password"); ?>" value="<?php echo old("password"); ?>" minlength="4" maxlength="255" required>
</div>
<div class="form-group">
<input type="password" name="confirm_password" class="form-control auth-form-input" placeholder="<?php echo trans("password_confirm"); ?>" maxlength="255" required>
</div>
<div class="form-group m-t-5 m-b-20">
<div class="custom-control custom-checkbox custom-control-validate-input">
<input type="checkbox" class="custom-control-input" name="terms" id="checkbox_terms" required>
<label for="checkbox_terms" class="custom-control-label"><?php echo trans("terms_conditions_exp"); ?>
<?php $page_terms = get_page_by_default_name("terms_conditions", $this->selected_lang->id);
if (!empty($page_terms)): ?>
<a href="<?= generate_url($page_terms->page_default_name); ?>" class="link-terms" target="_blank"><strong><?= html_escape($page_terms->title); ?></strong></a>
<?php endif; ?>
</label>
</div>
</div>
<?php if ($recaptcha_status): ?>
<div class="recaptcha-cnt">
<?php generate_recaptcha(); ?>
</div>
<?php endif; ?>
<div class="form-group">
<button type="submit" class="btn btn-md btn-custom btn-block"><?php echo trans("register"); ?></button>
</div>
<p class="p-social-media m-0 m-t-15"><?php echo trans("have_account"); ?> <a href="javascript:void(0)" class="link" data-toggle="modal" data-target="#loginModal"><?php echo trans("login"); ?></a></p>
<?php echo form_close(); ?>
<!-- form end -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Wrapper End-->