BillTracker/public/login.html

16 lines
388 B
HTML
Raw Normal View History

2026-05-03 19:51:57 -05:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2026-05-03 22:33:21 -05:00
<meta http-equiv="refresh" content="0; url=/login">
<title>BillTracker — Sign In</title>
2026-05-03 19:51:57 -05:00
<script>
2026-05-03 22:33:21 -05:00
window.location.replace('/login');
2026-05-03 19:51:57 -05:00
</script>
2026-05-03 22:33:21 -05:00
</head>
<body>
<p><a href="/login">Continue to BillTracker sign in</a></p>
2026-05-03 19:51:57 -05:00
</body>
</html>