/// <summary>Logs on the user.</summary> /// <param name="user">The user to log on.</param> public void LogOn(User user) { FormsAuthentication.SetAuthCookie(user.Login, true); }
public string GetResetPasswordLink(User user) { throw new NotImplementedException(); }