The user is now prevented from proceeding forward if their credentials are incorrect

This commit is contained in:
kdeng00
2020-01-14 20:35:21 -05:00
parent 49c25e54a1
commit 2742f827aa
7 changed files with 145 additions and 117 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ public:
User(const std::string& user, const std::string& pass) :
username(user), password(pass) { }
User(const std::string&& user, const std::string&& pass) :
username(std::move(user)), password(std::move(pass)) {}
username(user), password(pass) {}
std::string username;
std::string password;