Skip to content

Instantly share code, notes, and snippets.

@charlieporth1
Last active May 9, 2024 16:27
Show Gist options
  • Save charlieporth1/c2e30ed483e3cb842548734c2341a4a9 to your computer and use it in GitHub Desktop.
Save charlieporth1/c2e30ed483e3cb842548734c2341a4a9 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login Page</title>
</head>
<body>
<h1>Manual Password Browser Saver</h1>
<p>Created for saving a username and password to a browser's autofill</p>
<p>When in doubt inspect element or view page source</p>
<br>
<br>
<p>Charles Porth created this website</p>
<a href="https://ctptech.dev">CTPTech.dev</a>
<br>
<a href="https://whiskey.software">Whiskey.Software</a>
<br>
<br>
<p>
<b>
Note:
</b>
</p>
<p>You many need to click save password manually to save the password<p>
<p>This may involed clicking a password icon in the omni bar in Google Chrome or something else in a different browser</p>
<br>
<br>
<form action="#" method="post">
<label for="username">Username:</label>
<input type="text" name="username" id="username">
<br>
<p>or</p>
<label for="email">Email:</label>
<input type="email" name="email" id="email">
<br>
<p>or</p>
<label for="tel">Phone Number:</label>
<input type="tel" name="tel" id="tel">
<br>
<p>or</p>
<label for="text">Plain Text:</label>
<input type="text" name="text" id="text">
<br>
<br>
<p>
<b>and</b>
</p>
<br>
<br>
<label for="password">Password:</label>
<input type="password" name="password" id="password" required>
<br>
<br>
<p>
<b>then</b>
</p>
<br>
<br>
<button type="submit">Submit</button>
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment