flabk/templates/html/post-signin.html

16 lines
197 B
HTML
Raw Normal View History

2022-09-13 01:35:05 +01:00
<!DOCTYPE html>
<html>
<head>
<title>logging in</title>
</head>
<body>
<script>
window.localStorage.setItem('token', '{{token}}');
document.location.href = "/";
</script>
</body>
</html>