Skip to content

Instantly share code, notes, and snippets.

@stephenmelrose
Created July 20, 2016 21:38
Show Gist options
  • Save stephenmelrose/eb23bb6fa4ac1bff76bffe84b5b7587a to your computer and use it in GitHub Desktop.
Save stephenmelrose/eb23bb6fa4ac1bff76bffe84b5b7587a to your computer and use it in GitHub Desktop.
Empty POST on IE 9
<form class="login-form" role="form" action="https://DOMAIN/login" method="post">
<input type="hidden" name="_token" value="<TOKEN>">
<fieldset>
<div class="form-group">
<label class="control-label">Email</label>
<input type="email" name="email" class="form-control" required autofocus value="">
</div>
<div class="form-group">
<label class="control-label">Password</label>
<input type="password" name="password" class="form-control">
</div>
</fieldset>
<input type="submit" value="Login" class="btn btn-primary">
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment