Files
2026-09-12 09:01:12 +02:00

15 lines
406 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>URL Shortener</title>
</head>
<body>
<h1>URL Shortener</h1>
<form action="/shorten" method="POST">
<input type="text" name="url" placeholder="Enter URL" required>
<button type="submit">Shorten</button>
</form>
</body>
</html>