I am currently creating a simple login system for an upcoming assignment.
I want to neatly organize everything and have decided to create 2 cpp files with a header to link the two. The problem is when I run the program the command prompt pops up with nothing in it.
Your main function does nothing. Line 6 is simply a function declaration (and, presumably, duplicates the declaration that's in "Login.h". It is not a function call.
I see, well I removed void and simply wrote Login(); yet nothing happens. I've looked at a couple of other examples of function calls and I'm doing the same thing. I don't understand what I'm doing wrong
You've made the same mistake in line 20 of your first code block - you have a function declaration, not a function call.
Is that Login() function defined in lines 8 - 26 supposed to be a constructor for a Login class? Because as it's written there, it's a standalone function.