<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>模型和CSV文件上传</title>
</head>
<body>
    <h1>上传模型和CSV文件</h1>
    <form action="/upload" method="post" enctype="multipart/form-data">
        <label for="groupName">组别名称:</label>
        <input type="text" id="groupName" name="groupName" required><br><br>

        <label for="modelFile">模型文件:</label>
        <input type="file" id="modelFile" name="modelFile" required><br><br>

        <label for="csvTable">CSV表:</label>
        <input type="file" id="csvTable" name="csvTable" accept=".csv" required><br><br>

        <input type="submit" value="上传">
    </form>
</body>
</html>