@GetMapping("/events/form")
public String eventsForm(Model model) {
	model.addAttribute("event", new Event());
	return "events/form";
}

폼을 보여줄 요청 처리