passgen / templates /index.html
sca255's picture
v1 complete
8e34c2b unverified
raw
history blame
445 Bytes
<html>
<head><title>passgen</title></head>
<body>
<h1>passgen</h1>
<p>Generate a random password:</p>
<form action="/" method="post">
<label for="len">Length:</label>
<input type="number" name="len" id="len" value="16" min="10" max="100">
<label for="num">number of passwords:</label>
<input type="number" name="num" id="num" value="1" min="1" max="100">
<input type="submit" value="Generate">
</form>
</body>
</html>