EDA respostory build with the clone from github

This commit is contained in:
2026-05-16 00:04:28 +08:00
parent dcb3548651
commit 7ac8fed5f9
12 changed files with 1089 additions and 2 deletions
+23
View File
@@ -0,0 +1,23 @@
<!DOCTYPE html>
<html>
<head>
<title>mxPIC EDA - Login</title>
</head>
<body>
<h2>Login to mxPIC System</h2>
<!-- The form sends data to the /login route in server.py -->
<form action="/login" method="POST">
<label>Username:</label><br>
<input type="text" name="username" required><br><br>
<label>Password:</label><br>
<input type="password" name="password" required><br><br>
<button type="submit">Login</button>
</form>
<!-- Display error messages if login fails -->
{% if error %}
<p style="color:red;">{{ error }}</p>
{% endif %}
</body>
</html>