Edit the models.py file in basic app.
Import models and declare first name and lastname in Members class
This will create a database table with the name Members and add to fields by the name of first name and lastname.The following

The following command will apply the changes , i.e create the database.

OUTPUT:

A bit of templating to render the website. Here we create a table named Members with first and last names.

Here we add a clickable button called Add member

The above templating works result in this.
Kindly simple but would do for now.

Now we create the views to connect the app to the Django.
Here the add function loads the add.html and renders it.

And addrecord is used to create the input form.

Another template to render the form.

Adding urls.

Which would create the form.
