{"id":218,"date":"2025-06-12T05:20:52","date_gmt":"2025-06-12T05:20:52","guid":{"rendered":"https:\/\/bioskinetics.com.au\/?page_id=218"},"modified":"2025-06-12T05:24:35","modified_gmt":"2025-06-12T05:24:35","slug":"random-password-generator","status":"publish","type":"page","link":"https:\/\/bioskinetics.com.au\/?page_id=218","title":{"rendered":"Random Password Generator"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">Random Password Generator<\/h1>\n\n\n\n<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n  <meta charset=\"UTF-8\">\n  <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n  <title>Random Password Generator<\/title>\n  <style>\n    body {\n      font-family: Arial, sans-serif;\n      display: flex;\n      justify-content: center;\n      align-items: center;\n      height: 100vh;\n      background-color: #f0f0f0;\n      margin: 0;\n      flex-direction: column;\n    }\n    button {\n      padding: 1em 2em;\n      font-size: 1.2em;\n      cursor: pointer;\n      background-color: #333;\n      color: #fff;\n      border: none;\n      border-radius: 5px;\n      margin-bottom: 1em;\n    }\n    #passwordDisplay {\n      font-size: 1.2em;\n      margin-top: 1em;\n      padding: 1em;\n      border-radius: 5px;\n      text-align: center;\n      min-width: 200px;\n      background-color: #fff;\n      color: #333;\n    }\n  <\/style>\n<\/head>\n<body>\n\n  <button onclick=\"generatePassword()\">Generate<\/button>\n  <div id=\"passwordDisplay\"><\/div>\n\n  <script>\n    function generatePassword() {\n      const length = Math.floor(Math.random() * 5) + 12; \/\/ Random length between 12 and 16\n      const upper = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ';\n      const lower = 'abcdefghijklmnopqrstuvwxyz';\n      const numbers = '0123456789';\n      const symbols = '!@#$%^&*()-_=+[]{}|;:,.<>?';\n      const allChars = upper + lower + numbers + symbols;\n\n      let password = '';\n\n      \/\/ Ensure at least one of each character type is included\n      password += upper[Math.floor(Math.random() * upper.length)];\n      password += lower[Math.floor(Math.random() * lower.length)];\n      password += numbers[Math.floor(Math.random() * numbers.length)];\n      password += symbols[Math.floor(Math.random() * symbols.length)];\n\n      for (let i = password.length; i < length; i++) {\n        password += allChars[Math.floor(Math.random() * allChars.length)];\n      }\n\n      \/\/ Shuffle the password\n      password = password.split('').sort(() => 0.5 - Math.random()).join('');\n\n      document.getElementById('passwordDisplay').textContent = `Password: ${password}`;\n    }\n  <\/script>\n\n<\/body>\n<\/html>\n\n\n\n\n<ul class=\"wp-block-list\">\n<li>random password generator, <\/li>\n\n\n\n<li>secure password generator, <\/li>\n\n\n\n<li>strong password generator, <\/li>\n\n\n\n<li>online password maker, <\/li>\n\n\n\n<li>password creator tool, <\/li>\n\n\n\n<li>generate secure passwords, <\/li>\n\n\n\n<li>16 character password generator, <\/li>\n\n\n\n<li>password generator with symbols, <\/li>\n\n\n\n<li>random password tool, complex password generator, <\/li>\n\n\n\n<li>best password generator, <\/li>\n\n\n\n<li>create strong passwords, <\/li>\n\n\n\n<li>free password generator, <\/li>\n\n\n\n<li>password security tool, <\/li>\n\n\n\n<li>encrypted password generator, <\/li>\n\n\n\n<li>generate random secure password, <\/li>\n\n\n\n<li>safe password generator, custom password generator, <\/li>\n\n\n\n<li>web-based password generator, <\/li>\n\n\n\n<li>instant password generator<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Random Password Generator Random Password Generator Generate<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"blank-slate-template.php","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_glsr_average":0,"_glsr_ranking":0,"_glsr_reviews":0,"footnotes":""},"class_list":["post-218","page","type-page","status-publish","hentry"],"aioseo_notices":[],"_links":{"self":[{"href":"https:\/\/bioskinetics.com.au\/index.php?rest_route=\/wp\/v2\/pages\/218","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/bioskinetics.com.au\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/bioskinetics.com.au\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/bioskinetics.com.au\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/bioskinetics.com.au\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=218"}],"version-history":[{"count":3,"href":"https:\/\/bioskinetics.com.au\/index.php?rest_route=\/wp\/v2\/pages\/218\/revisions"}],"predecessor-version":[{"id":221,"href":"https:\/\/bioskinetics.com.au\/index.php?rest_route=\/wp\/v2\/pages\/218\/revisions\/221"}],"wp:attachment":[{"href":"https:\/\/bioskinetics.com.au\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=218"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}