whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
resources
/
views
/
custom-modules
/
ajax
/
Upload File:
files >> /home/kckglobal/www/portal/resources/views/custom-modules/ajax/verify.blade.php
<div class="modal-header"> <h5 class="modal-title" id="modelHeading">@lang('modules.moduleSettings.verifyPurchase')</h5> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button> </div> <div class="modal-body"> <x-form id="verify-form"> <p class="bg-secondary p-2 rounded text-white">For Domain:- {{ request()->getHost() }}</p> <p> <span class="">Module: <b>{{ucwords($module)}}</b></span> </p> <p> <span class="badge badge-info">@lang('app.note')</span> <a href="https://help.market.envato.com/hc/en-us/articles/202822600-Where-Is-My-Purchase-Code-" class="f-w-500" target="_blank"><u>@lang('modules.moduleSettings.findPurchaseCode')</u></a> </p> <div id="response-message"></div> <div class="row"> <div class="col-sm-12"> <x-forms.text fieldId="purchase_code" fieldLabel="Enter your purchase code" fieldName="purchase_code" fieldRequired="true" :fieldPlaceholder="__('placeholders.purchaseCode')"> </x-forms.text> <input type="hidden" id="module" name="module" value="{{ $module }}"> </div> </div> </x-form> </div> <div class="modal-footer"> <x-forms.button-cancel data-dismiss="modal" class="border-0 mr-3">@lang('app.cancel')</x-forms.button-cancel> <x-forms.button-primary id="save-module-verify" icon="check">Verify</x-forms.button-primary> </div> <script> $('#save-module-verify').click(function () { const url = "{{ route('custom-modules.verify_purchase') }}"; $.easyAjax({ url: url, container: '#verify-form', type: "POST", messagePosition: 'inline', disableButton: true, blockUI: true, buttonSelector: "#save-module-verify", data: $('#verify-form').serialize(), success: function (response) { if (response.status === 'success') { window.location.reload(); } } }) }); </script>
Copyright ©2021 || Defacer Indonesia