How to use relative path in form action
<form action="/myapp/alterPassword" id="changepassword" method="post"
autocomplete="off" onsubmit="return checkPassword();">
<div
style="display: block; position: absolute; top: 15%; left: 35%; width: 480px;">
In the above code is there any way to use relative path instead of the myapp/alterPassword ?
You can just dynamically print the context path as follows:
Or use the HTML
<base>tag so that all relative links in the page are relative to it.See also: