Hello guys, I've been working on a log in programme and there seems to be a problem with it - error: expected primary-expression before 'const'
Here is my code
std::cout<<"Welcome User"<<std::endl;
std::cout<<"This is a login page"<<std::endl;
std::cout<<"Fill in the details"<<std::endl;
std::cout<<"Create a username: ";
std::cin >> username;
std::cout<<"Username is "<<username<<std::endl;
std::cout<<"Create Password: ";
std::cin >> const password;