19 lines
460 B
HTML
19 lines
460 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="utf-8", content="width=device-width", name="viewport"/>
|
||
|
<title>Link Shortening</title>
|
||
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/style.css') }}">
|
||
|
<link rel="shortcut icon" type="image/jpg" href="{{ url_for('static', filename='res/favicon.ico') }}">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h2>
|
||
|
Your Link:
|
||
|
</h2>
|
||
|
{{ path }}
|
||
|
</body>
|
||
|
|
||
|
</html>
|