1
Fork 0
mirror of https://github.com/Steffo99/referer.steffo.eu.git synced 2024-10-16 09:47:25 +00:00
referer/templates/root.html

18 lines
No EOL
516 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Referer tests</title>
</head>
<body>
<h1>
Referer tests
</h1>
<ul>
<li><a href="{{ url_for("link_page") }}">Simple link</a></li>
<li><a href="{{ url_for("location_href_page") }}">location.href</a></li>
<li><a href="{{ url_for("location_replace_page") }}">location.replace()</a></li>
<li><b><a href="{{ url_for("window_open_page") }}">window.open()</a></b></li>
</ul>
</body>
</html>