let email : string = 'test@test.com';
let password : string = 'asdfasdf';

// if (password == 'asdfasdf' || password == 'zxcvzxcv') {
// 	console.log('You are authorized');
// } else {
// 	console.log('Permission denied');
// }

if (!(email == 'test@test.com')) {
	console.log('You are authorized');
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: