Skip to content

Commit

Permalink
#20: add 'form.html
Browse files Browse the repository at this point in the history
  • Loading branch information
jeff1evesque committed Aug 22, 2014
1 parent b49b1d3 commit ed06436
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions tests/python/form.html
@@ -0,0 +1,35 @@
<!DOCTYPE html>

<html>
<head>
</head>
<body>

<form action='../../python/flask_form.py' method='post'>

<label>Session type</label><br>
<input list='session_type' name='svm_session'><br>
<datalist id='session_type'>
<select name='session_type' required>
<option value='training'>
<option value='analysis'>
</select>
</datalist>

<label>Supply Dataset</label><br>
<input type='file' name='svm_dataset_file'><br>
<input type='url' name='svm_dataset_xml'><br>

<label>Classification Parameters</label><br>
<input type='text' name='svm_clfn_dep'><br>
<input type='text' name='svm_clfn_indep'><br>

<label>Regression Parameters</label><br>
<input type='text' name='svm_rgrn_dep'><br>
<input type='text' name='svm_rgrn_indep'><br>
<input type='submit'>

</form>

</body>
</html>

0 comments on commit ed06436

Please sign in to comment.