Created
July 20, 2016 21:38
-
-
Save stephenmelrose/eb23bb6fa4ac1bff76bffe84b5b7587a to your computer and use it in GitHub Desktop.
Empty POST on IE 9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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