In the Master Database:
CREATE LOGIN readonlylogin WITH password='1231!#ASDF!a';
CREATE USER readonlyuser FROM LOGIN readonlylogin WITH DEFAULT_SCHEMA = CGReport;
In Stats Database:
CREATE USER readonlyuser FROM LOGIN readonlylogin WITH DEFAULT_SCHEMA = CGReport;
EXEC sp_addrolemember 'db_datareader', 'readonlyuser';
From SSMS enter readonlylogin /1231!#ASDF!a as the credentials to my server, then switch to the advanced tab and enter then database name in the connect to database.