Files
pytry/flask_url_shortener/templates/submit.html
T
bendtherules 851c36b887 Url shortener
Written in flask
2014-02-27 17:07:52 +05:30

20 lines
307 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Url submitted</title>
</head>
<body>
<p>
Url submitted sucessfully.
</p>
<p>
Your shortened link is <a href="./view/{{short_code}}"> {{short_code}}</a>
</p>
<p>
Goto:
<a href="./">Url submit page</a>
</p>
</body>
</html>