mirror of
https://github.com/Steffo99/referer.steffo.eu.git
synced 2024-11-22 02:54:22 +00:00
15 lines
280 B
HTML
15 lines
280 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>location.href</title>
|
||
|
<script>
|
||
|
function move() {
|
||
|
window.open("/referer")
|
||
|
}
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<button onclick="move()">Click on me!</button>
|
||
|
</body>
|
||
|
</html>
|