Files
Bewerbungs-Portfolio/RazorPagesMovie/Pages/Bewerbung.cshtml.cs
T
Francesco Lorenzo D'Amico 028e62407a
Deploy Staging / deploy (push) Successful in 1m10s
Replace contact form POST with async JS API endpoint
Add a POST /api/contact minimal API that returns JSON instead of relying
on the Razor Page's OnPostAsync full-page reload. The contact form now
submits via fetch(), showing an inline success or error message without
reloading the page.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01SLdp8vEGVX6EKSDQPAx36a
2026-08-19 18:26:41 +02:00

13 lines
185 B
C#

using Microsoft.AspNetCore.Mvc.RazorPages;
namespace RazorPagesMovie.Pages
{
public class BewerbungModel : PageModel
{
public void OnGet()
{
}
}
}