Html input value does not display the complete variable while populating html form [duplicate] Html input value does not display the complete variable while populating html form [duplicate] flask flask

Html input value does not display the complete variable while populating html form [duplicate]


You need quotes around the value, otherwise the space ends the attribute.

In general, you should put quotes around all attribute values.

<input type="text" name="{{k1}}" value="{{v1}}" size = "50" ><br>