Led keeps on after statement is reached

If you auto format your code then these lines:

AngelinaNoLee:

else

{
  digitalWrite(LED, LOW);
}
}

Would be properly indented:

  else
  {
    digitalWrite(LED, LOW);
  }
}