I'm using devise for a web app and wanted to add the confirmable module to the site. However, since a confirmation_token isn't generated users can't sign in. When clicking the 'Didn't receive confirmation instructions?' link the token still isn't generated.
Confirmation email just generates this link (notice the lack of token in the url):
<p><a href="http://localhost:3000/users/confirmation">Confirm my account</a></p>
What is the best way to get this to work?
Many thanks,
Tony