I have a form in Html and after sending the data, I have a task to leave the information entered by the user, and not to clean the form. Form exemple:
<form method="get">
    <input type="search" id="search" name="req" autocomplete="off" spellcheck="false" role="combobox"
           placeholder="write here" aria-live="polite"><br>
<div class="form_radio_btn">
    <input id="radio-1" type="radio" name="radio" value="first" checked>
    <label for="radio-1">first</label>
</div>
<div class="form_radio_btn">
    <input id="radio-2" type="radio" name="radio" value="Second">
    <label for="radio-2">second</label>
</div>
</form>
Please suggest
 
     
    