Mercurial > public > sg101
annotate accounts/static/js/accounts_code.js @ 905:be233ba7ca31
Reworked registration process.
Previous one proved too challenging for some humans.
Hopefully made it simpler but still unusual to confuse bots.
Increased test coverage also.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 08 Mar 2015 11:06:07 -0500 |
parents | |
children |
rev | line source |
---|---|
bgneal@905 | 1 $(document).ready(function() { |
bgneal@905 | 2 $.get('/accounts/register/code/', function(data) { |
bgneal@905 | 3 $('#reg-code-block').text(data.code); |
bgneal@905 | 4 }); |
bgneal@905 | 5 }); |