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

15 lines
288 B
HTML
Raw Normal View History

2019-08-05 09:56:14 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>location.replace</title>
<script>
function move() {
location.replace("/referer")
}
</script>
</head>
<body>
<button onclick="move()">Click on me!</button>
</body>
</html>