There is a minor bug in the logic of the tpl_account_default template file.
It may be found in the section of code lines 65-83. There are two conditions being tested here. If either is true a block of code will be generated. Within this block is an unordered list. However, this list is only opened (line 72) if the first condition is true and only closed (line 79) if the second is true. However if only one of them is true, then the HTML structure is be corrupted.
The fix is simple - just move the ul tags outside of these conditions to lines 69 and 82 respectively.
I attach the file with these corrections >> tpl_account_default.zip



