Create a signup view that goes into Main/views.py and has the following attributes:
GET Request: Return a Signup.html that contains a simple Django Form for signing up. (Use Context)
POST Request:
- Receive - username, email, password, first-name and last_name.
- Create the user instance in the default Django User model
- Return a Success.html
Also, create a URL to access this view in Main/urls.py with the URL name = signup.