public ActionResult CreateAccount(string username, string password, string firstName, string surname)
        {
            var account = new AccountManager();
            var user = new User(username, password, firstName, surname);

            account.CreateNewUserAccount(user);

            //var createdAccountModel = new CreatedAccountModel(userAccount, "Successfully Created");

            return View("Index");
        }