This commit is contained in:
2022-08-18 15:42:27 +03:00
commit 2157306a4e
22 changed files with 1015 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
<!doctype html>
<html>
<head>
<meta charset=utf-8/>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="HandheldFriendly" content="true" />
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes" />
<style>
body {
background-color: #2c3338;
height: 100%;
margin: 0;
min-height: 100vh;
}
</style>
</head>
<body>
<script>
setTimeout(function(){
window.location.href = '{{ url_for("login") }}';
}, 3000);
</script>
</body>
</html>