2023-02-13 20:14:50 +11:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" >
|
|
|
|
<head>
|
2023-02-18 15:06:06 +11:00
|
|
|
<meta charset="UTF-8">
|
2023-11-02 21:27:38 +11:00
|
|
|
<title>Generator | Nathan.Woodburn/</title>
|
2023-02-18 15:06:06 +11:00
|
|
|
<meta name="theme-color" content="#97009a">
|
|
|
|
<meta name="description" content="G'day, this is my personal website. You can find out who I am or check out some of my projects.">
|
|
|
|
<meta name="twitter:title" content="Nathan.Woodburn/">
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:image" content="https://nathan.woodburn.au/assets/img/profile.jpg">
|
|
|
|
<meta name="twitter:image" content="https://nathan.woodburn.au/assets/img/profile.jpg">
|
|
|
|
<meta name="twitter:description" content="G'day, this is my personal website. You can find out who I am or check some of my projects.">
|
|
|
|
<meta name="twitter:card" content="summary">
|
2023-11-02 21:27:38 +11:00
|
|
|
<link rel="apple-touch-icon" type="image/png" sizes="180x180" href="assets/img/apple-touch-icon.png">
|
2023-11-02 21:37:18 +11:00
|
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="180x180" href="/assets/img/apple-touch-icon.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="192x192" href="/assets/img/android-chrome-192x192.png">
|
|
|
|
<link rel="icon" type="image/png" sizes="512x512" href="/assets/img/android-chrome-512x512.png">
|
2023-02-18 15:06:06 +11:00
|
|
|
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.min.css'>
|
|
|
|
<link rel='stylesheet' href='https://fonts.googleapis.com/css?family=Montserrat&display=swap'>
|
2023-11-02 21:27:38 +11:00
|
|
|
<link rel="stylesheet" href="/assets/css/generator.css">
|
2023-02-13 20:14:50 +11:00
|
|
|
</head>
|
|
|
|
<body>
|
2024-01-08 02:30:13 +11:00
|
|
|
<!-- partial:index.partial -->
|
2023-02-13 20:14:50 +11:00
|
|
|
<div class="container">
|
|
|
|
<h2 class="title">Password Generator</h2>
|
|
|
|
<div class="result">
|
|
|
|
<div class="result__title field-title">Generated Password</div>
|
|
|
|
<div class="result__info right">click to copy</div>
|
|
|
|
<div class="result__info left">copied</div>
|
2023-02-18 15:06:06 +11:00
|
|
|
<div class="result__viewbox" id="result"><button class="textgenerate" id="textgenerate">GENERATE PASSWORD</button></div>
|
2023-02-13 20:14:50 +11:00
|
|
|
<button id="copy-btn" style="--x: 0; --y: 0"><i class="far fa-copy"></i></button>
|
|
|
|
</div>
|
|
|
|
<div class="length range__slider" data-min="4" data-max="32">
|
|
|
|
<div class="length__title field-title" data-length='0'>length:</div>
|
|
|
|
<input id="slider" type="range" min="4" max="32" value="16" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="settings">
|
|
|
|
<span class="settings__title field-title">settings</span>
|
|
|
|
<div class="setting">
|
|
|
|
<input type="checkbox" id="uppercase" checked />
|
|
|
|
<label for="uppercase">Include Uppercase</label>
|
|
|
|
</div>
|
|
|
|
<div class="setting">
|
|
|
|
<input type="checkbox" id="lowercase" checked />
|
|
|
|
<label for="lowercase">Include Lowercase</label>
|
|
|
|
</div>
|
|
|
|
<div class="setting">
|
|
|
|
<input type="checkbox" id="number" checked />
|
|
|
|
<label for="number">Include Numbers</label>
|
|
|
|
</div>
|
|
|
|
<div class="setting">
|
|
|
|
<input type="checkbox" id="symbol" />
|
|
|
|
<label for="symbol">Include Symbols</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<button class="btn generate" id="generate">Generate Password</button>
|
2023-02-18 15:06:06 +11:00
|
|
|
<a href="https://nathan.woodburn.au/" target="_blank">Nathan.Woodburn/</a>
|
2023-02-13 20:14:50 +11:00
|
|
|
</div>
|
|
|
|
<!-- partial -->
|
2023-11-02 21:27:38 +11:00
|
|
|
<script src="/assets/js/generator.js"></script>
|
2023-02-13 20:14:50 +11:00
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|