diff --git a/Webzine.WebApplication/Controllers/ContactController.cs b/Webzine.WebApplication/Controllers/ContactController.cs new file mode 100644 index 0000000..557e1fb --- /dev/null +++ b/Webzine.WebApplication/Controllers/ContactController.cs @@ -0,0 +1,15 @@ +using Microsoft.AspNetCore.Mvc; + +namespace Webzine.WebApplication.Controllers +{ + /// + /// Controller pour la page contact. + /// + public class ContactController : Controller + { + public IActionResult Index() + { + return View(); + } + } +} diff --git a/Webzine.WebApplication/Views/Contact/Index.cshtml b/Webzine.WebApplication/Views/Contact/Index.cshtml new file mode 100644 index 0000000..d2c892b --- /dev/null +++ b/Webzine.WebApplication/Views/Contact/Index.cshtml @@ -0,0 +1,66 @@ +@{ + ViewData["Title"] = "Contact"; +} + +
+

Contact

+
+ C.U.C.D.B - DIIAGE
+ 69 Avenue Aristide Briand
+ 21000 Dijon

+
+
+ Phone : 03 80 40 50 60
+ secretariat@cucdb.fr +
+ +
+ +
+ +

Suivez-nous

+
+ + + + + + + + + + + +
+ +
\ No newline at end of file diff --git a/Webzine.WebApplication/Views/Shared/_Layout.cshtml b/Webzine.WebApplication/Views/Shared/_Layout.cshtml index 9573fa6..80e4341 100644 --- a/Webzine.WebApplication/Views/Shared/_Layout.cshtml +++ b/Webzine.WebApplication/Views/Shared/_Layout.cshtml @@ -8,7 +8,7 @@ @* Ajout de bootstrap *@ - + @* Ajout de font-awesome *@