To reset the password of a Simple Invoices user it is necessary to use MySQL. Passwords are stored as a hash using the MD5 function.
Log in to mysql and connect to your database, then:select * from si_user;update si_user set password = MD5(‘newpassword’) WHERE email = ’email@address.com’;