I'm coding a signup website, the layout is finish with html and css but I don't know how to get the user name, email and password from the html code and combine them to create a JSON file to send to the server.
<form action="#">
  <div class="form-group">
    <label for="username">Username</label>
    <input class="form-control" type="text" name="username" id="username" placeholder="biker" required />
  </div>
  <div class="form-group">
    <label for="email">Email</label>
    <input class="form-control" type="text" name="email" id="email" placeholder="biker@gmail.com" required />
  </div>
  <div class="form-group">
    <label for="password">Password</label>
    <input class="form-control" type="password" name="password" id="password" placeholder="********" required />
  </div>
  <div class="form-group">
    <label for="passwordRepeat">Repeat Password</label>
    <input class="form-control" type="password" name="passwordRepeat" id="passwordRepeat" placeholder="********" required />
  </div>
  <div class="m-t-lg">
    <ul class="list-inline">
      <li>
        <input class="btn btn--form" type="submit" value="Register" id="registerbtn" />
      </li>
      <li>
        <a class="signup__link" href="#">I am already a member</a>
      </li>
    </ul>
  </div>
</form>  
I heard using javascript and jquery can do this but I have not learned Javascript yet, so I do all the search but still no luck.
 
    