Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Create index.html#30

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
faisaldadkhan13 wants to merge1 commit intosahandghavidel:main
base:main
Choose a base branch
Loading
fromfaisaldadkhan13:patch-1
Open
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletionsprojects/Password Generator/index.html
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Password Generator</title>
</head>
<body>
<div class="container">
<h1>Password Generator</h1>
<div class="options">
<label for="length">Password Length: </label>
<input type="number" id="length" value="12" min="4" max="50">
<br>
<label for="uppercase">Include Uppercase: </label>
<input type="checkbox" id="uppercase" checked>
<br>
<label for="lowercase">Include Lowercase: </label>
<input type="checkbox" id="lowercase" checked>
<br>
<label for="numbers">Include Numbers: </label>
<input type="checkbox" id="numbers" checked>
<br>
<label for="symbols">Include Symbols: </label>
<input type="checkbox" id="symbols" checked>
</div>
<button id="generate" onclick="generatePassword()">Generate Password</button>
<input type="text" id="password" readonly>
</div>
<script src="script.js"></script>
</body>
</html>

[8]ページ先頭

©2009-2025 Movatter.jp