first commit

This commit is contained in:
2026-09-12 09:01:12 +02:00
commit 1f22503eae
2 changed files with 67 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<!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>