16
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>URL Shortner</title>
</head>
<body>
<h1>URL Shortner</h1>
<form action="/" method="post">
<input type="text" name="url" placeholder="URL to shorten" autocomplete="off">
<input type="text" name="custom" placeholder="Custom URL (optional)" autocomplete="off">
<input type="password" name="key" placeholder="Password" autocomplete="off">
<input type="submit" value="Shorten">
</form>
</body>
</html>