Viewing file: 30f6b3045c03c61c945eaae7066bd1510a62599c.php (7.57 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title','Sign up'); ?>
<?php $__env->startSection('extra-style'); ?>
<style>
body {
font-family: "Montserrat", sans-serif;
}
.login-box,
.register-box {
width: 400px;
}
.login-page {
background-image: url('<?php echo e(asset(' images/background-login.png')); ?>');
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.input-data {
width: 100%;
padding: 15px 20px;
margin: 10px 0;
display: inline-block;
border-bottom: 2px solid #ccc;
border-top: 0;
border-left: 0;
border-right: 0;
box-sizing: border-box;
border-radius: 5px;
font-size: 18px !important;
color: #666;
background-color: #f8f8f8;
transition: all 0.3s ease-in-out;
}
[class*=icheck-]>input:first-child+input[type=hidden]+label::before,
[class*=icheck-]>input:first-child+label::before {
border-radius: 50px !important;
}
.forgot-text {
font-size: 16px !important;
color: #006666;
font-weight: 500;
text-decoration: none;
transition: all 0.3s ease-in-out;
}
.forgot-text:hover {
color: #444;
}
.loginbtn {
background-color: #006666;
color: white;
padding: 10px 25px;
margin: 10px 0;
cursor: pointer;
font-size: 18px !important;
font-weight: 600;
border-radius: 5px;
border: 2px solid transparent;
transition: all 0.3s ease-in-out;
}
.loginbtn:hover {
background-color: transparent;
color: #006666;
border: 2px solid #006666;
}
.sing_up span {
margin-top: 10px;
display: block;
color: #868686;
font-size: 16px;
}
.sing_up a {
padding: 0 5px;
color: #006666;
background-color: transparent;
text-decoration: none;
font-weight: 600;
transition: all 0.3s ease-in-out;
}
.icheck-primary label {
font-size: 16px !important;
}
.card {
padding: 25px 20px !important;
}
.form-content {
padding: 40px 20px 40px 20px;
}
.header-content {
margin: 24px 0px 14px 0px;
}
.header-content img {
width: 270px;
height: auto;
}
.modal-body {
height: 500px;
overflow-y: auto;
}
.modal-dialog {
max-width: 1000px !important;
}
</style>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="card-body login-card-body p-0">
<div class="form-data text-center">
<div class="header-content">
<img src="<?php echo e(asset('uploads/'.get_settings('app_logo'))); ?>" alt="">
</div>
<form action="<?php echo e(route('admin.authenticate')); ?>" method="post">
<?php echo csrf_field(); ?>
<div class="form-content">
<?php if(request()->get('plan')): ?>
<input type="hidden" name="plan_id" value="<?php echo e(request()->get('plan')); ?>">
<?php endif; ?>
<div class="input-group">
<input name="first_name" type="text" class="input-data"
placeholder="<?php echo app('translator')->get('auth.registration.form.first_name'); ?>">
</div>
<div class="input-group">
<input name="last_name" type="text" class="input-data"
placeholder="<?php echo app('translator')->get('auth.registration.form.last_name'); ?>">
</div>
<div class="input-group">
<input name="email" type="email" class="input-data"
placeholder="<?php echo app('translator')->get('auth.registration.form.email'); ?>">
</div>
<div class="input-group">
<input name="password" type="password" class="input-data"
placeholder="<?php echo app('translator')->get('auth.registration.form.password'); ?>">
</div>
<div class="row">
<div class="col-12 text-sm">
<input type="checkbox" required>
<?php echo trans('auth.terms_condition',['terms'=>'<a href="#" class="forgot-text">Terms and
Condition</a>']); ?>
</div>
</div>
<div class="login-btn text-center">
<?php if(get_settings('registration_status')=='enable'): ?>
<?php if(get_settings('recaptcha_site_key')): ?>
<button class="g-recaptcha btn loginbtn" data-sitekey="<?php echo e(get_settings('recaptcha_site_key')); ?>"
data-callback='onSubmit' data-action='submit'><?php echo app('translator')->get('auth.form.button.sign_up'); ?></button>
<?php else: ?>
<button type="submit" class=" btn loginbtn"><?php echo app('translator')->get('auth.form.button.sign_up'); ?></button>
<?php endif; ?>
<?php endif; ?>
</div>
<div class="sing_up mt-3 text-center">
<p class="mb-0">
<a class="forgot-text" href="<?php echo e(route('login')); ?>"><?php echo app('translator')->get('auth.form.sign_in'); ?></a>
</p>
</div>
</div>
</form>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="exampleModalCenter" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle"
aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLongTitle"><?php echo app('translator')->get('admin.terms_condition'); ?></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<div class="terms_condition-content">
<h4><?php echo e(get_settings('terms_condition_title')); ?></h4>
<p><?php echo get_settings('terms_condition_description'); ?></p>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('extra-script'); ?>
<script src="https://www.google.com/recaptcha/api.js"></script>
<script>
function onSubmit(token) {
document.getElementById("login_registration").submit();
}
</script>
<script>
$(document).on('click','.forgot-text',function(){
$('#exampleModalCenter').modal('show');
});
</script>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('layouts.auth_customer', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/gateway.picotech.app/public_html/resources/views/auth/registration.blade.php ENDPATH**/ ?>
|