2023-10-01 23:39:12 +00:00
<!DOCTYPE html>
< html >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width" >
2025-02-14 01:07:18 +00:00
< title > Password Generator - FP650< / title >
< meta name = "description" content = "This isn't secure." / >
< meta property = "og:title" content = "Password Generator - FP650" / >
< meta property = "og:type" content = "website" / >
< meta property = "og:image" content = "https://firepup650.com/favicon.ico" / >
< meta property = "og:image:height" content = "512" / >
< meta property = "og:image:width" content = "512" / >
< meta property = "og:url" content = "https://firepup650.com/password-generator" / >
< meta property = "og:description" content = "This isn't secure." / >
< meta property = "og:site_name" content = "Firepup650's Site" / >
< meta property = "og:locale" content = "en_US" >
< meta property = "og:logo" content = "https://firepup650.com/favicon.ico" / >
2024-10-04 12:26:10 +00:00
< link href = "/styles/style.css" rel = "stylesheet" type = "text/css" / >
2023-10-02 02:21:42 +00:00
< link href = "/styles/bounce.css" rel = "stylesheet" type = "text/css" / >
2023-10-02 01:28:54 +00:00
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/visits"></script> -->
2024-09-30 18:51:26 +00:00
<!-- <script async src="https://api.countapi.xyz/hit/firepup650.repl.co/pgen"></script> -->
2023-10-01 23:39:12 +00:00
< / head >
< body >
< h5 hidden id = 'Maintenance' class = center > < / h5 >
< p class = "center rainbow" > Click the button to generate a random password:< / p > < button type = "button" onclick = "genPwd()" class = "cyan center" > Generate Password< / button >
< input class = "center" type = "checkbox" id = "commnsym" > < / input > < label for = "commnsym" > < span class = "center force-color" > Include common symbols< / span > < / label >
< input class = "center" type = "checkbox" id = "uncomsym" > < / input > < label for = "uncomsym" > < span class = "center force-color" > Include uncommon symbols< / span > < / label >
< input class = "center" type = "checkbox" id = "uppercas" checked > < / input > < label for = "uppercas" > < span class = "center force-color" > Include uppercase letters< / span > < / label >
< input class = "center" type = "checkbox" id = "lowercas" checked > < / input > < label for = "lowercas" > < span class = "center force-color" > Include lowercase letters< / span > < / label >
< input class = "center" type = "checkbox" id = "numerics" checked > < / input > < label for = "numerics" > < span class = "center force-color" > Include numbers< / span > < / label >
< br / >
< span class = "center force-color" id = "password" > < / span >
2024-10-04 12:26:10 +00:00
< script src = "/scripts/pgen2.js" > < / script >
2023-10-01 23:39:12 +00:00
< / body >
2024-09-30 18:51:26 +00:00
< / html >