Yeah that won't work. The link needs to be on the <a> tag with a href. An onclick won't work. Now you just have an empty <a> tag. So Modalizer cannot see what page to open.
So best is to just make a normal link like:
<a class="modal" href="http://www.domain.com/user-profile/registers">
<div style="text-align: center;">
<button>Register Account</button></div>
</a>
Or use the tag syntax like:
{modal url=http://www.domain.com/user-profile/registers}
<div style="text-align: center;">
<button>Register Account</button></div>
{/modal}