Spaces:
Running
Running
Create templates/index.html
Browse files- templates/index.html +14 -0
templates/index.html
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html lang="en">
|
3 |
+
<head>
|
4 |
+
<meta charset="UTF-8">
|
5 |
+
<title>AIBOM Generator</title>
|
6 |
+
</head>
|
7 |
+
<body>
|
8 |
+
<h2>AIBOM Generator</h2>
|
9 |
+
<form action="/generate" method="post">
|
10 |
+
<input type="text" name="model_id" placeholder="Enter Hugging Face Model ID" required>
|
11 |
+
<button type="submit">Generate AIBOM</button>
|
12 |
+
</form>
|
13 |
+
</body>
|
14 |
+
</html>
|