new file: .gitignore

new file:   Dockerfile
	new file:   README.md
	new file:   app.py
	new file:   asknotesintro.txt
	new file:   background_data.txt
	new file:   bot.py
	new file:   introduction.txt
	new file:   requirements.txt
	new file:   run.py
	new file:   start.bat
	new file:   templates/index.html
	new file:   templates/login.html
	new file:   templates/settings.html
This commit is contained in:
SimolZimol
2024-09-02 17:19:15 +02:00
commit 38237e6fa0
15 changed files with 1307 additions and 0 deletions

19
templates/login.html Normal file
View File

@@ -0,0 +1,19 @@
<!-- web_panel/templates/login.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
</head>
<body>
<h1>Admin Panel Login</h1>
<form method="POST" action="{{ url_for('login') }}">
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>
</body>
</html>