Muleque
Muleque

Reputation: 91

Save HTML form and values offline for later processing

I have an offline HTML form (see example below) which will have several tick options. The user gets the form sent by email, which he has then to fill offline and send the filled form back for later processing. How could this be implemented? I mean saving the html file when filled does not store the value. Any suggestions, ideas?

<form>
  <div>
    <input type="checkbox" id="check1" name="check1" value="ns">
    <label for="check1">Is A correct?</label>
  </div>
  <div>
    <input type="checkbox" id="check2" name="check2" value="ns">
    <label for="check2">Is B correct?</label>
  </div>
  <div>
    <button type="submit">Subscribe</button>
  </div>
</form>

Best Muleque

Upvotes: 1

Views: 1071

Answers (1)

Dipan Sharma
Dipan Sharma

Reputation: 1133

You can use local storage to store the data from the HTML form. Here is the full implementation example for that.

Html Local Storage Implementation

Upvotes: 1

Related Questions