Skip to content

Commit

Permalink
fix(login): use relative url for google login in login page
Browse files Browse the repository at this point in the history
  • Loading branch information
stropitek committed Aug 22, 2016
1 parent f54cba6 commit f0dd746
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ <h3>CouchDB login</h3>
var google = document.getElementById('google-login-link');
if(google) {
google.onclick = function() {
var url = '/auth/login/google';
var url = 'login/google';
doLogin(url);
};
}
Expand Down

0 comments on commit f0dd746

Please sign in to comment.