a1c00l commited on
Commit
46992e0
·
verified ·
1 Parent(s): 52a2091

Update templates/index.html

Browse files
Files changed (1) hide show
  1. templates/index.html +6 -3
templates/index.html CHANGED
@@ -5,10 +5,13 @@
5
  <title>AI SBOM Generator</title>
6
  </head>
7
  <body>
8
- <h2>AI SBOM 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 AI SBOM</button>
12
  </form>
13
  </body>
14
- </html>
 
5
  <title>AI SBOM Generator</title>
6
  </head>
7
  <body>
8
+ <h1>AI SBOM Generator</h1>
9
+ <p>
10
+ Enter Hugging Face model, in a format <code>&lt;organization-or-username&gt;/&lt;model-name&gt;</code> to generate AI SBOM in CycloneDX format.
11
+ </p>
12
  <form action="/generate" method="post">
13
+ <input type="text" name="model_id" placeholder="" required>
14
  <button type="submit">Generate AI SBOM</button>
15
  </form>
16
  </body>
17
+ </html>