Url shortener

Written in flask
This commit is contained in:
bendtherules
2014-02-27 17:07:52 +05:30
parent fde2ccb814
commit 851c36b887
4 changed files with 97 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Submit url</title>
</head>
<body>
<form action="./submit" method="get">
Enter Url:
<input type="text" name="url" />
<br>
<input type="submit" value="submit" />
</form>
</body>
</html>