summaryrefslogtreecommitdiff
path: root/example/public/srp.js
blob: e68e2207c7140ddef630a3df2158e6c5c1314e8b (plain)
1
2
3
4
5
6
7
8
9
$(document).ready(function(){
  $('#login-btn').click(on_login);
});

function on_login(event) {
  srp = new SRP();
  srp.identify();
  event.preventDefault();
}