I am in a situation where I have to provide a link of my web app to client & they will be posting form to my web page. The app is created on Angular 5. I have been googling around; but didn't find the the solution. I hope any of you could help me it.
<form action="http://localhost:4200/#/activateaccount" >
<input type='Hidden' name='loginId' value='ahsan.iqbal@abc.co.uk'/>
<input type="submit" value="Submit">
</form>
The submission code will be something like this. Where in action the link is of my Angular 5 app. Is it possible to post to Anuglar 5 page?
Thanks in advance though.