File size: 328 Bytes
1bacad4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
<!DOCTYPE html>
<html>
    <body>
        <h2>HTML Form</h2>
        <form action="/submit_form" method="post">
            <label for="name">Name:</label><br>
            <input type="text" id="dataset_name" name="dataset_name" value=""><br>
            <input type="submit" value="Submit">
        </form> 
    </body>
</html>