Aktionen

Testbereich: Unterschied zwischen den Versionen

Aus znilwiki

KKeine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
 
(4 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
<!DOCTYPE html>
<html lang="de">
<html lang="de">
<head>
<head>
Zeile 5: Zeile 4:
   <title>Passwortgenerator</title>
   <title>Passwortgenerator</title>
   <style>
   <style>
    body {
      font-family: "Consolas", monospace;
      padding: 20px;
    }
     label, input, select, textarea, button {
     label, input, select, textarea, button {
       font-family: "Consolas", monospace;
       font-family: "Consolas", monospace;
       margin: 5px 0;
       margin: 5px 0;
      size 20;
     }
     }
     .form-field {
     .form-field {
Zeile 19: Zeile 15:
</head>
</head>
<body>
<body>
  <h1>Passwortgenerator</h1>
<p style="font-family: "Consolas", monospace; padding: 20px; margin: 20px">
 
   <div class="form-field">
   <div class="form-field">
     <label for="length">Passwortlänge........:</label>
     <label for="length">Passwortlänge........:</label>
Zeile 28: Zeile 23:
   <div class="form-field">
   <div class="form-field">
     <label for="vowels">Vokale...............:</label>
     <label for="vowels">Vokale...............:</label>
     <input type="text" id="vowels" value="aeiou">
     <input type="text" size="32" id="vowels" value="aeiou">
   </div>
   </div>
    
    
Zeile 139: Zeile 134:
     });
     });
   </script>
   </script>
</p>
</body>
</body>
</html>
</html>

Aktuelle Version vom 22. Februar 2025, 14:43 Uhr

Passwortgenerator