initial commit
This commit is contained in:
61
resources/views/partials/modal/common_modal.blade.php
Normal file
61
resources/views/partials/modal/common_modal.blade.php
Normal file
@@ -0,0 +1,61 @@
|
||||
|
||||
{{--<div class="modal fade" id="confirmation_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">--}}
|
||||
{{-- <div class="modal-dialog modal-md" id="modal-dialog-panel">--}}
|
||||
{{-- <div class="modal-content">--}}
|
||||
{{-- <div class="modal-header modal-header-warning">--}}
|
||||
{{-- <button type="button" class="close" data-dismiss="modal">×</button>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- <div class="modal-body">--}}
|
||||
{{-- <h4 class="mb-2 text-center" id="message_text">--}}
|
||||
{{-- Are you sure you want to delete your payment--}}
|
||||
{{-- and cancel Credit Zombies/SmartCredit account?--}}
|
||||
{{-- </h4>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- <div class="modal-footer" style="text-align: center">--}}
|
||||
{{-- <button class="btn btn-success btn-lg" id="btn-submit-form">Yes</button>--}}
|
||||
{{-- <button type="button" class="btn btn-secondary btn-lg" data-dismiss="modal">Close</button>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- </div>--}}
|
||||
{{--</div>--}}
|
||||
|
||||
<div class="modal fade" id="confirmation_modal_subscription" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog modal-md" id="modal-dialog-panel">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4 class="mb-2 text-center" id="message_text_subscription">
|
||||
{{$inputData['message']}}
|
||||
</h4>
|
||||
</div>
|
||||
<div class="modal-footer" style="text-align: center">
|
||||
<button class="btn btn-success btn-lg" onclick="submitSubscription()" id="btn-submit-subscription">Yes</button>
|
||||
<button type="button" class="btn btn-secondary btn-lg" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{--<div class="modal fade" id="common_confirmation_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">--}}
|
||||
{{-- <div class="modal-dialog modal-md" id="modal-dialog-panel">--}}
|
||||
{{-- <div class="modal-content">--}}
|
||||
{{-- <div class="modal-header">--}}
|
||||
{{-- <button type="button" class="close" data-dismiss="modal">×</button>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- <div class="modal-body">--}}
|
||||
{{-- <h4 class="mb-2 text-center" id="common_message_text">--}}
|
||||
|
||||
{{-- </h4>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- <div class="modal-footer" style="text-align: center">--}}
|
||||
{{-- <button type="button" class="btn btn-secondary btn-lg" data-dismiss="modal">Close</button>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- </div>--}}
|
||||
{{-- </div>--}}
|
||||
{{--</div>--}}
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,81 @@
|
||||
@php
|
||||
$source_types = config('constant.sourceType');
|
||||
$credit_report_providers = getCache('credit_report_provider_link');
|
||||
@endphp
|
||||
|
||||
<div class="modal fade" id="first_time_login_video_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog" >
|
||||
<div class="modal-content">
|
||||
<div class="modal-body">
|
||||
<div class="row">
|
||||
<div class="iframe-div">
|
||||
<iframe src="{{config('constant.VIDEO_URL')}}" frameborder="0" allow="autoplay; fullscreen; picture-in-picture"
|
||||
class="iframe"
|
||||
title="What's Next With Credit Counsel Elite (MUST WATCH)">
|
||||
</iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer" style="text-align: center!important;">
|
||||
<button class="btn button-color" onclick="showFirstTimeLoginModalView()">Get Started</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="first_time_login_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog" >
|
||||
<div class="modal-content">
|
||||
<div class="modal-header modal-header-info">
|
||||
<h5 class="modal-title">Congratulations! Your in. First step is the set up your credit report system to import your credit report now.</h5>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="row">
|
||||
<div class="col-md-6 col-xs-12">
|
||||
<div class="form-group">
|
||||
<label for="source_type">Source Type</label>
|
||||
<select class="form-control" id="report_provider">
|
||||
@foreach($source_types as $key=>$value)
|
||||
<option value="{{$value}}" {{auth()->user()->credit_report_company_type == $value ? 'selected':''}}> {{$key}}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row " >
|
||||
<h5 class="mb-1 text-center font-bold" >IMPORTANT:</h5>
|
||||
<h5 class="mb-1 text-center">SET UP YOUR CREDIT REPORT NOW TO IMPORTANT INTO CREDIT COUNSEL ELITE SOFTWARE</h5>
|
||||
<h5 class="mb-1 text-center color-red">USE THE SAME EMAIL AND PASSWORD THAT YOU USED TO SET UP CREDIT COUNSEL ELITE SYSTEM</h5>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="modal-footer" style="text-align: center!important;">
|
||||
<button class="btn btn-success pull-left" onclick="hideFirstTimeLoginModalView({{json_encode($credit_report_providers)}})">Go Get Credit Report</button>
|
||||
<button class="btn button-color pull-right" onclick="hideModalView()">No Thanks</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="first_time_login_view_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog" >
|
||||
<div class="modal-content">
|
||||
<div class="modal-header modal-header-info">
|
||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||
<h5 class="modal-title">Congratulations! Your in. Next step add your 3 forms of information below</h5>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h5 class="mb-1 text-left">1. Drivers license image</h5>
|
||||
<h5 class="mb-1 text-left">2. Your Social Security Card image</h5>
|
||||
<h5 class="mb-1 text-left">3. Your most recent bill image ( any bill )</h5>
|
||||
</div>
|
||||
<div class="modal-footer" style="text-align: center!important;">
|
||||
<button class="btn btn-success btn-lg" id="btn_first_time_login">Ok</button>
|
||||
<button type="button" class="btn btn-secondary btn-lg" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
48
resources/views/partials/modal/image_view_modal.blade.php
Normal file
48
resources/views/partials/modal/image_view_modal.blade.php
Normal file
@@ -0,0 +1,48 @@
|
||||
@php
|
||||
$user_image_path = getSession('user_image');
|
||||
$profile_image = getSession('profile_image');
|
||||
$max_file_size= $file = config('constant.MAX_FILE_SIZE');
|
||||
@endphp
|
||||
|
||||
<div class="modal fade" id="profile_pic_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog modal-md" >
|
||||
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h4 class="mb-2 text-center font-bold pull-left" > Upload Profile Picture </h4>
|
||||
<button type="button" class="close pull-right" data-dismiss="modal">×</button>
|
||||
</div>
|
||||
<form method="post" action="{{route('upload.client.image')}}" autocomplete="off"
|
||||
enctype=multipart/form-data
|
||||
class="input-form-section">
|
||||
@csrf
|
||||
<div class="modal-body">
|
||||
<input type="hidden" id="doc_type" name="doc_type" value="9"/>
|
||||
<div class="row">
|
||||
@if(!empty($user_image_path))
|
||||
<div class="text-center" id="profile_pic_id">
|
||||
<img src="{{getPublicFile($user_image_path)}}"
|
||||
class="img-client"><br>
|
||||
</div>
|
||||
@endif
|
||||
<input id="profile_pic" type="file" class="form-control"
|
||||
name="uploadmedia[profile_pic]"
|
||||
onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})"
|
||||
accept="image/jpeg,image/gif,image/png,image/x-eps">
|
||||
@include('partials.file_size_label')
|
||||
|
||||
</div>
|
||||
<div class="row text-center">
|
||||
<button type="submit" class="btn btn2" >Upload</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary btn-lg pull-left" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
40
resources/views/partials/modal/modal_views.blade.php
Normal file
40
resources/views/partials/modal/modal_views.blade.php
Normal file
@@ -0,0 +1,40 @@
|
||||
|
||||
<div class="modal fade" id="recurring_view_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog modal-md" style="width: 25%">
|
||||
<div class="modal-content border-0">
|
||||
<div class="modal-header modal-header-warning">
|
||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||
<h4 class="modal-title">Subscription Information</h4>
|
||||
|
||||
</div>
|
||||
<div class="modal-body ">
|
||||
<h5 class="mb-1 text-left">Oops! There is an issue with your payment</h5>
|
||||
<h5 class="mb-1 text-left">Please update or add a new payment method now</h5>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-success btn-lg" id="btn_recurring">Payment</button>
|
||||
<button type="button" class="btn btn-secondary btn-lg" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="modal fade" id="credit_report_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog modal-md" id="modal-dialog-panel">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header modal-header-info">
|
||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<h4 class="mb-2 text-center" id="modal_body_data"></h4>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button class="btn btn-success btn-lg" id="btn_credit_report_modal">Ok</button>
|
||||
<button class="btn btn-success btn-lg hidden" data-dismiss="modal" id="btn_hidden">Ok</button>
|
||||
<button type="button" class="btn btn-secondary btn-lg" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
39
resources/views/partials/modal/support_modal.blade.php
Normal file
39
resources/views/partials/modal/support_modal.blade.php
Normal file
@@ -0,0 +1,39 @@
|
||||
|
||||
<div class="modal fade" id="support_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog modal-md" id="modal-dialog-panel">
|
||||
<div class="modal-content">
|
||||
<form method="post" action="{{route('create.client.support')}}" id="support_form"
|
||||
autocomplete="off"
|
||||
class="input-form-section">
|
||||
@csrf
|
||||
<div class="modal-header">
|
||||
<h4 class="mb-2 text-center font-bold pull-left" >Support: </h4>
|
||||
<button type="button" class="close pull-right" data-dismiss="modal">×</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div class="row modal-style" >
|
||||
<p class="mb-1 text-justify">Please Only submit Technical Issues, we do not handle credit repair questions, or how to create letters specifically. We can only help with the technical issue within the software when things are not working corretly. Please send all other questions to Admin at Credit Counsel Elite. </p>
|
||||
<p class="mb-2 text-left" >Thank you </p>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-group">
|
||||
<input type="text" class="form-control" id="support_title" name="support_title" placeholder="Title" ></input>
|
||||
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<textarea rows="4" cols="50" class="form-control" id="support_text" name="support_text" placeholder="Please write what is your problem or needs" ></textarea>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary btn-lg pull-left" data-dismiss="modal">Close</button>
|
||||
<button type="submit" class="btn btn2 pull-right" >Click For Technical Support Only</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
44
resources/views/partials/modal/upload_doc_modal.blade.php
Normal file
44
resources/views/partials/modal/upload_doc_modal.blade.php
Normal file
@@ -0,0 +1,44 @@
|
||||
@php
|
||||
$max_file_size= $file = config('constant.MAX_FILE_SIZE');
|
||||
@endphp
|
||||
|
||||
<div class="modal fade" id="upload_pic_modal" style="margin-top: 50px" tabindex="-1" aria-hidden="true">
|
||||
<div class="modal-dialog modal-md" >
|
||||
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h4 class="mb-2 text-center font-bold pull-left" id="pic_header" > Upload Document </h4>
|
||||
<button type="button" class="close pull-right" data-dismiss="modal">×</button>
|
||||
</div>
|
||||
<form method="post" action="{{route('upload.client.image')}}" autocomplete="off" id="doc_upload_form"
|
||||
enctype=multipart/form-data
|
||||
class="input-form-section">
|
||||
@csrf
|
||||
<div class="modal-body">
|
||||
<input type="hidden" id="doc_type" name="doc_type"/>
|
||||
<div class="row">
|
||||
<div class="text-center">
|
||||
<img src="#"
|
||||
class="img-client" id="uploaded_doc" ><br>
|
||||
</div>
|
||||
<input id="profile_pic" type="file" class="form-control"
|
||||
name="uploadmedia[profile]"
|
||||
onchange="return common_helper.fileSizeValidation(this,{{$max_file_size}})"
|
||||
accept="image/jpeg,image/gif,image/png,image/x-eps">
|
||||
@include('partials.file_size_label')
|
||||
|
||||
</div>
|
||||
<div class="row text-center">
|
||||
<button type="submit" id="doc_upload_btn" class="btn btn2" >Upload</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-secondary btn-lg pull-left" data-dismiss="modal">Close</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
Reference in New Issue
Block a user