Locked out

I downloaded the Enterprise trial yesterday, set things up and changed the login from demo/demo to something else. Back at it now but Chrome didn’t save the username just the suggested password. Nothing I try works so is there a way around this or should I just reinstall?

@Phil_Miller No need to reinstall. Just delete the user info records from db and restart the application, it will redirect to admin user setup page where you can create admin user and setup the password.

drop index ACT_UNIQ_AUTH_USER ON ACT_RU_AUTHORIZATION;
drop index ACT_UNIQ_AUTH_GROUP ON ACT_RU_AUTHORIZATION;	

delete from act_id_membership;
delete from act_id_user;
delete from act_id_group;
delete from act_ru_authorization; 

commit;

alter table ACT_RU_AUTHORIZATION
    add constraint ACT_UNIQ_AUTH_USER
    unique (USER_ID_,TYPE_,RESOURCE_TYPE_,RESOURCE_ID_);

alter table ACT_RU_AUTHORIZATION
    add constraint ACT_UNIQ_AUTH_GROUP
    unique (GROUP_ID_,TYPE_,RESOURCE_TYPE_,RESOURCE_ID_);

After running this script, restart the application and then access the cockpit it will redirect to admin user setup page.