Add initial project structure with Docker setup and frontend/backend files

This commit is contained in:
2024-10-17 18:57:05 -04:00
parent 86f36c4754
commit 4cce05f7d6
15 changed files with 606 additions and 0 deletions

13
frontend/templates/eula.html Executable 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>End User License Agreement</title>
</head>
<body>
<h1>End User License Agreement (EULA)</h1>
<p>[Insert your EULA text here]</p>
<a href="{{ url_for('register') }}">Back to Registration</a>
</body>
</html>