So I have an html form built with Foundation that collects information from user that I must then store in database. I attempt to connect the form to a view as follows:
<form data-abide action = "{% url 'User:user_signup_save' %}" method="POST">
The view I am attempting to send this data to is
def user_signup_save(request):
But I keep getting this error
Reverse for 'user_signup_save' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []
Any suggestions on how to resolve this?