@biyro02,
Hey, it was long ago, but I've just looked into it for you :)
I moved flashout elsewhere and no longer used it to display entered values in my form.
Instead I used session post vars in the value attribute as you can see below:
Look at this line <input type='text' name="month" class="form-control" *value="{% if postVars['month'] is defined %}{{ postVars['month']}}{% endif%}" />
<div class="col-md-3 columns">
<div class="form-group">
<label for="name">Select Month:</label>
<div class='input-group date' id='datetimepicker1'>
<input type='text' name="month" class="form-control" *value="{% if postVars['month'] is defined %}{{ postVars['month']}}{% endif%}" />
<span class="input-group-addon">
<span class="glyphicon glyphicon-calendar">
</span>
</span>
</div>
</div>
</div>
The whole page code you can find on my Github page