DNN does not allow you to check the remember password checkbox by default, a small jquery comes to the aid here.
This will do the trick, at the bottom of the page, a small html module with this content:
<script>
$("input[name*='chkCookie']").prop('checked', true);
</script> |