#23 Controleur et vue contact ok

This commit is contained in:
josephine.vetu
2026-03-05 15:42:18 +01:00
parent eeddeb4e43
commit a70b556379
7 changed files with 87 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
using Microsoft.AspNetCore.Mvc;
namespace Webzine.WebApplication.Controllers
{
/// <summary>
/// Controller pour la page contact.
/// </summary>
public class ContactController : Controller
{
public IActionResult Index()
{
return View();
}
}
}