diff options
| author | Bobby <[email protected]> | 2022-12-28 07:51:38 -0500 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-12-28 07:51:38 -0500 |
| commit | 54988a928d37fc12e1f6eb83c6ecfc2babe55e29 (patch) | |
| tree | 42f5a62061fc3b0a4e70484d6bfb4afe184224d1 /users/models.py | |
| parent | 3ff3acef57e95ecd2e8dde429d4735e7c2e8e684 (diff) | |
| download | thatcomputerscientist-54988a928d37fc12e1f6eb83c6ecfc2babe55e29.tar.xz thatcomputerscientist-54988a928d37fc12e1f6eb83c6ecfc2babe55e29.zip | |
Registraion function with captcha working
Diffstat (limited to 'users/models.py')
| -rw-r--r-- | users/models.py | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/users/models.py b/users/models.py index 746814ef..1b97e871 100644 --- a/users/models.py +++ b/users/models.py @@ -16,11 +16,4 @@ class UserProfile(models.Model): def __str__(self): return self.user.username - -class CaptchaStore(models.Model): - captcha_string = models.CharField(max_length=6) - csrf_token = models.CharField(max_length=100) - created_at = models.DateTimeField(auto_now_add=True) - def __str__(self): - return self.captcha_string |
