Jump to content

Search the Community

Showing results for tags 'keygen'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General Section
    • Rules
    • Announcements and Updates
    • Project conception and planning
    • General Discussion
    • Request Section
  • Web Master Module
    • Scripts
    • Template
    • Programs
    • Plugins & Add-ons
  • WordPress
    • Themes
    • Plugins
  • Application
    • Android
    • IOS
    • Windows
    • Flutter App
    • Unity
  • eCommerce
    • Opencart 3.x
    • PrestaShop
    • Shopify
  • Marketplace
    • Web & App Scripts
    • Hosting, Servers, Domain
  • Showcase Your Platform
    • Website Platform
    • Application platforms
  • Invision Community Suite
    • Applications And Plugins
    • Styles
  • XenForo 2.x
    • Releases
    • Add-ons
    • Styles
  • WHMCS
    • Releases
    • Templates
    • Plugins

Categories

  • PHP Scripts
  • Programs
  • Template
  • Plugins & Add-ons
  • Wordpress
    • Themes
    • Plugins
  • Marketplace
    • Web & App Scripts
  • Application
    • Android
    • IOS
    • Windows
    • Flutter App
    • Unity
  • eCommerce
    • Opencart 3.x
    • PrestaShop
    • Shopify
  • WHMCS
    • Releases
    • Templates
    • Plugins
  • Invision Community Suite
    • Applications and Plugins
    • Styles
  • XenForo 2.x
    • Releases
    • Add-ons
    • Styles

Product Groups

There are no results to display.

Blogs

  • Programs
  • FAQs

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me

Found 1 result

  1. This is a html version of Wasender Keygen. Paste the code into notepad and save the file extension as html. that's all. <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>WASender Keygen</title> <style> body { font-family: Arial, sans-serif; margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f5f5f5; } .container { max-width: 400px; width: 100%; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); } input[type="text"], input[type="number"], input[type="submit"], button { width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ccc; border-radius: 5px; box-sizing: border-box; } input[type="submit"] { background-color: #007bff; color: #fff; cursor: pointer; transition: background-color 0.3s; } input[type="submit"]:hover { background-color: #0056b3; } #output { display: none; margin-top: 20px; padding: 10px; border: 1px solid #ccc; border-radius: 5px; background-color: #f9f9f9; overflow-wrap: break-word; } #copyButton { display: none; margin-top: 10px; padding: 10px; border: none; border-radius: 5px; background-color: #007bff; color: #fff; cursor: pointer; transition: background-color 0.3s; } #copyButton:hover { background-color: #0056b3; } </style> </head> <body> <div class="container"> <h2>WASender Keygen</h2> <form id="base64Form"> <input type="text" id="textInput" placeholder="Enter activation code"> <input type="number" id="validDays" placeholder="Enter valid days" min="1" value=""> <input type="submit" value="Generate"> <button id="pasteButton">Paste & Generate</button> </form> <div id="output"></div> <button id="copyButton">Copy key</button> </div> <script> document.getElementById("base64Form").addEventListener("submit", function(event) { event.preventDefault(); generateKey(); }); document.getElementById("pasteButton").addEventListener("click", function() { var copiedText = navigator.clipboard.readText().then(clipboardText => { if (clipboardText.trim() !== "") { document.getElementById("textInput").value = clipboardText.trim(); generateKey(); } }); }); function generateKey() { var inputText = document.getElementById("textInput").value.trim(); var validDays = parseInt(document.getElementById("validDays").value); var startDate = new Date(); var endDate = new Date(startDate.getTime() + validDays * 24 * 60 * 60 * 1000); if (inputText === "") { alert("Please enter your activation code."); return; } var finalEncodedText = '{"ActivationCode":"' + btoa(inputText) + '","validDays":' + validDays + ',"StartDate":"' + startDate.toISOString().split('T')[0] + 'T00:07:01.3075397+05:00","EndDate":"' + endDate.toISOString().split('T')[0] + 'T00:07:01.3075397+05:00","Item_id":"35762285","purchasecode":"db2d42a5-7682-48d6-a10d-2421352ff54b"}'; var doubleEncodedText = btoa(finalEncodedText); var outputDiv = document.getElementById("output"); var copyButton = document.getElementById("copyButton"); outputDiv.innerText = doubleEncodedText; outputDiv.style.display = "block"; copyButton.style.display = "block"; } document.getElementById("copyButton").addEventListener("click", function() { var outputText = document.getElementById("output").innerText; var tempInput = document.createElement("input"); tempInput.value = outputText; document.body.appendChild(tempInput); tempInput.select(); document.execCommand("copy"); document.body.removeChild(tempInput); alert("Result copied to clipboard!"); }); </script> </body> </html>
×
×
  • Create New...