I have created webpage in AEM having login functionality (username and password) and I need to pass these 2 paramaters using POST method. I am able to do the same using GET but when I try with POST, I get error stating that Content is modified/created.
I am passing the parameters using html <form action="destination.html" method="POST">
I read that I need to create a Sling Servlet which will manage my POST method. But the question is how to do so? and where to create that servlet file?
Thanks.