private void findUser(string username)
        {
            conn = new DBconn();

            User u = conn.findUser(username);
            if (u == null)
                displayuserlabel.Content = "No user found";
            else
                displayuserlabel.Content = u.Username;
        }