//models.py from django.db import models
class CustomerInfo(models.Model): full_name = models.CharField(max_length = 150) email = models.EmailField() p