atlas-map / form.html
Richard Guo
base app
1bacad4
raw
history blame
328 Bytes
<!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>