infopage/public/index.html

26 lines
628 B
HTML
Raw Permalink Normal View History

2024-02-20 14:55:22 -05:00
<!DOCTYPE html>
<html>
<head>
<title>InfoPage</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" href="/css/base.css">
<script src="/js/base.js"></script>
<script>
if (localStorage.getItem("token")) {
setCookie("token", localStorage.getItem("token"));
2024-02-26 17:33:35 -05:00
window.location.href = "/home";
2024-02-20 14:55:22 -05:00
}
</script>
</head>
<body>
<h1>InfoPage</h1>
To share information about yourself<br><br>
<a href="/signup">Sign up</a> -
<a href="/login">Log in</a>
</body>
</html>