Skip to content

Instantly share code, notes, and snippets.

View Bayu29's full-sized avatar
🎯
Focusing

Bayu29 Bayu29

🎯
Focusing
  • Madiun, Indonesia
View GitHub Profile
@Bayu29
Bayu29 / invisible recaptcha.md
Created July 3, 2021 01:35 — forked from ctf0/invisible recaptcha.md
invisible recaptcha with vuejs & laravel

Frontend "https://github.com/DanSnow/vue-recaptcha"

  • npm install --save vue-recaptcha

  • form

<my-form inline-template>
    <form action="{{ route('...') }}" @submit.prevent="FormSubmit($event)">
        // other inputs
<?php
namespace App\Http\Controllers\API;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Helpers\ResponseFormatter;
use App\Mail\SendResetPassword;
use App\Mail\ResetPassword;
use App\Models\Merchant;
import { appUrl } from "./env";
var snap_url = appUrl;
const iframe = document.createElement("iframe");
iframe.id = 'agros-snap';
iframe.style.zIndex = "99999";
iframe.style.width = "100%";
iframe.style.height = "100%";
iframe.style.display = "block";
iframe.style.position = "fixed";