Sunday, October 18, 2020

Password generator HTML

 <!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Password generator</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="container">
        <div id="block">
            <input type="text" id="textarea" readonly>
            <button id="clipboard">Copy</button>
        </div>
        <div id="block">
            Length: <input type="text" id="length" maxlength="2">
        </div>
        <div id="block">
            Allow UpperCase: <input type="checkbox" checked name="allow"class="check" id="upperCase">
        </div>
        <div id="block">
            Allow Lowercase: <input type="checkbox" checked name="allow"class="check" id="lowerCase">
        </div>
        <div id="block">
            Allow Numbers: <input type="checkbox" checked name="allow"class="check" id="number">
        </div>
        <div id="block">
            Allow Symbols: <input type="checkbox" checked name="allow" class="check" id="symbol">
        </div>
        <div id="block">
            <button id="generatepassword">Generate Password</button>
        </div>
        
    </div>
    <script src="script.js"></script>
</body>
</html>

No comments:

Post a Comment