aboutsummaryrefslogtreecommitdiff
path: root/www/authenticate.js
blob: 86d722cbbfd7ba3fef8b67b3d16678129c6a7ec0 (plain)
1
2
3
4
5
6
jQuery(function($) {
  navigator.id.beginAuthentication(function(email) {
    var escapedEmail = encodeURIComponent(email);
    window.location = 'authenticate.pl?email=' + escapedEmail;
  });
});