From b3c47d95b3011e82ad2bc2515faefcc183a047f8 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Sun, 22 Oct 2017 19:16:25 +0200 Subject: [PATCH] test --- Yavsc/Controllers/TestController.cs | 12 +++++++++ Yavsc/Views/Test/Index.cshtml | 40 +++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 Yavsc/Controllers/TestController.cs create mode 100644 Yavsc/Views/Test/Index.cshtml diff --git a/Yavsc/Controllers/TestController.cs b/Yavsc/Controllers/TestController.cs new file mode 100644 index 00000000..578f760d --- /dev/null +++ b/Yavsc/Controllers/TestController.cs @@ -0,0 +1,12 @@ +using Microsoft.AspNet.Mvc; + +namespace Yavsc.Controllers +{ + public class TestController: Controller + { + public IActionResult Index() + { + return View(); + } + } +} \ No newline at end of file diff --git a/Yavsc/Views/Test/Index.cshtml b/Yavsc/Views/Test/Index.cshtml new file mode 100644 index 00000000..ebf113a4 --- /dev/null +++ b/Yavsc/Views/Test/Index.cshtml @@ -0,0 +1,40 @@ +@model Yavsc.ViewModels.Test.CalendarViewModel +@{ + ViewData["Title"] = @SR["Page d'accueil"]; + int i=0; +} +@section header { + + + +} +

@ViewData["Title"]

+
+
+

Saisissez votre demande de rendez-vous

+
+
+
+
+ Votre évennement + +
+
+
+
+ @await Component.InvokeAsync("Calendar","EventDate") +
+ + +
+
+
+
+
+ +
+
+ +@{ await Html.RenderPartialAsync("_ValidationScriptsPartial"); } \ No newline at end of file