My index.html looks like this
index.html
You should add the value attribute to each of your input fields:
value
input
Option1 Option2 Option3
and in your flask route you can read the selected option:
option = request.form['options']
and you'll get the value of the selected radio button.