-3
I wanted to know how to get the information of the data entered in the html input to create an object by my MVC model and save it in the database. Note: I already have all model classes, interface classes, I just need to assemble the objects with the data to post the data.
![Follow screenshot of how html is]http://imgur.com/8DQeWfR
A piece of HTML:
<div class="form-group">
<label for="Email" class="control-label">Email</label>
<input type="email" class="form-control" id="Email" placeholder="Email" data-error="Bruh, that email address is invalid" required>
<div class="help-block with-errors"></div>
</div>