public ActionResult DataSubmission(SightingInfo sighting_)
 {
     if (ModelState.IsValid)
     {
         TempData["message"] = string.Format("Your information has been submitted for approval. Thank You!");
         return(RedirectToAction("Index"));
     }
     //If the form wasn't filled out correctly we stay on the same page
     else
     {
         return(View(sighting_));
     }
 }
        public ActionResult DataSubmission()
        {
            SightingInfo newSighting = new SightingInfo();

            return(View(newSighting));
        }