Hi,
I am trying to send my contact form to email using formspree which is only html. I tried to do what it says in their site but the submit button is not working.
<div class="container">
<form action="https://formspree.io/f/mnqkylvj" method="POST">
<input type="text" name="Name" placeholder="Full Name" required>
<input type="text" name="Email" placeholder="Email Address" required>
<input type="text" name="ContactNumber" placeholder="Contact Number">
<input type="text" name="Subject" value={{property.Name}} disabled>
<textarea type="text" name="Message" placeholder="Enter your message" required></textarea>
<button class="button1" type="submit">Submit</button>
</form>
</div>
Is it because it is angular and i need to do something with button click?