I have a simple application that displays some informaiton and lets users update the informaitn using Forms. To increase security, I want all my POST and GET requests to be initiated from the server and not from the client browser. How can one do that without using the new ServerComponents?
I can do it it by designing it the MVC way with a central 'page' that does the updates on getServerProps and then redirects back to the requesting page with added parameters but I was sondering if there is a betetr way to do it?