public async Task<ActionResult> Register(RegisterModel model)
		{
			if (ModelState.IsValid)
			{
					AccountService service = new AccountService();
					string username = model.UserName;
					string password = model.Password;
					await service.Register(username, password, "");

					return Json(new { success = true });
				
			}

			return Json(new { success = false });
		}