added new files

This commit is contained in:
2022-11-29 19:57:05 +05:30
parent 62220212ed
commit f05319114b
2 changed files with 41 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Bizgaze</title>
</head>
<body>
<script src="../assets/js/common.js"></script>
<script>
if (isAuthenticated()) {
window.location = './authentication';
} else {
window.location = './login';
}
</script>
</body>
</html>