mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
fixes the random login on dev
This commit is contained in:
parent
d9cdde9aa7
commit
89815878d9
|
@ -61,6 +61,7 @@ Discourse.LoginView = Discourse.ModalBodyView.extend({
|
|||
$hidden_login_form.find('input[name=username]').val(_this.get('loginName'));
|
||||
$hidden_login_form.find('input[name=password]').val(_this.get('loginPassword'));
|
||||
$hidden_login_form.find('input[name=redirect]').val(window.location.href);
|
||||
$hidden_login_form.find('input[name=authenticity_token]').val($('meta[name=csrf-token]').attr('content'));
|
||||
$hidden_login_form.submit();
|
||||
}
|
||||
}).fail(function(result) {
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
<input name="username" type="text" id="signin_username">
|
||||
<input name="password" type="password" id="signin_password">
|
||||
<input name="redirect" type="hidden">
|
||||
<input name="authenticity_token" type="hidden" />
|
||||
<input type="submit" id="signin-button" value="Log In">
|
||||
</form>
|
||||
<% end %>
|
||||
|
|
Loading…
Reference in New Issue
Block a user