Add local loading page

This commit is contained in:
2024-01-17 16:46:20 -06:00
parent 3371f4031c
commit 9ac8f95982
5 changed files with 117 additions and 16 deletions

13
templates/index.html Normal file
View File

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Loading</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<div class="spinner"></div>
<p>Waiting for backend server to start...</p>
</body>
</html>