GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Age Verification Script (https://gfy.com/showthread.php?t=1362335)

bmwracer41 02-28-2023 02:31 PM

Age Verification Script
 
Hello

Hoping this is the best Forum to solicit some help

1) I am looking for an age verification script that I can use for escort sites, many of the Tubes now have Home Page Pop ups that you agree your are over 18 to enter
This website contains age-restricted materials!

Agreement that you are over 18 years old
By clicking on the "I Agree" button, and by entering this website you agree with conditions and certify under penalty of perjury that you are an adult.


What I need is an internal one within the site where a model must upload a Document from an approved Government Agency , I.E- Drivers license, passport, etc and then an area within the site , after creating an account , where they take a selfie holding that form of documentation , any any other suggestions

2) also need a bitcoin company that can collect money and transfer to accounts within the Unied States, I dont have any experience in crypto world , so help needed here also

Thanks

Ross

[email protected]

skype- ross.bleustein

Any help appreciated

the_software_dev 02-28-2023 04:10 PM

Here, I made one for you:

Put this before </head>:

Code:

<style>
        .gfy_tsd_hidden {
                display: none;
        }

        #gfy_tsd_overlay {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: gray;
                z-index: 500;
                opacity: 0.7;
                overflow-y: hidden;
        }
       
        #gfy_tsd_modal_container {
                background-color: white;
                padding: 1rem 2rem;
                top: 30%;
                width: 70%;
                position: relative;
                margin: 0 auto;
                border-radius: 5px;
                box-shadow: 0px 0px 5px 5px #504d4d;
        }
       
        #gfy_tsd_modal_title {
                margin-top: 5px;
                font-weight: bold;
                font-size: x-large;
                color: black;
        }
       
        #gfy_tsd_modal_text {
                margin-top: 10px;
                font-size: normal;
        }
       
        #gfy_tsd_buttons_container {
                margin-top: 15px;
                display: flex;
                flex-direction: row;
                gap: 15px;
        }
       
        #gfy_tsd_buttons_container button {
                padding: 1rem 2rem;
                border: 0;
                color: white;
        }
       
        #gfy_tsd_buttons_container button.accept {
                background-color: green;
        }
       
        #gfy_tsd_buttons_container button.deny {
                background-color: red;
        }
</style>

And put this before </body>:

Code:

        <div id="gfy_tsd_overlay" class="gfy_tsd_hidden">
                <div id="gfy_tsd_modal_container">
                        <p id="gfy_tsd_modal_title">Agreement that you are over 18 years old</p>
                        <p id="gfy_tsd_modal_text">By clicking on the "I Agree" button, and by entering this website you agree with conditions and certify under penalty of perjury that you are an adult.</p>
                       
                        <div id="gfy_tsd_buttons_container">
                                <button id="gfy_tsd_accept" class="accept" type="button">I Agree</button>
                                <button id="gfy_tsd_deny" class="deny" type="button">No</button>
                        </div>
                </div>
        </div>
        <script>
                (() => {
                        if (!localStorage.getItem('age_agg')) {
                                document.getElementById('gfy_tsd_overlay').classList.remove('gfy_tsd_hidden');
                        }
                       
                        document.getElementById('gfy_tsd_accept').onclick = () => {
                                localStorage.setItem('age_agg', 'yes');
                                document.getElementById('gfy_tsd_overlay').classList.add('gfy_tsd_hidden');
                        }
                       
                        document.getElementById('gfy_tsd_deny').onclick = () => {
                                window.location.href = 'google.com';
                        }
                })();
        </script>


VladS 02-28-2023 04:32 PM

The popup consent thing is fairly easy to add, as per the post above, it is a simple code, however the model verification is a bit more work and you might have to use a coder, such as myself (shameless plug) or any other of the coders around here :2 cents:

Re crypto to FIAT, there are a couple companies that offer that type of service, i have not used or worked with any yet.

bmwracer41 03-01-2023 03:58 PM

Info
 
Many thanks Guys

money biz 03-02-2023 10:12 AM

I am reaching but maybe id.me ? The irs uses it now.

plsureking 03-03-2023 08:19 AM

Quote:

Originally Posted by money biz (Post 23103818)
I am reaching but maybe id.me ? The irs uses it now.

thats probably a good way to get a high bounce rate :winkwink:

#


All times are GMT -7. The time now is 11:33 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123