Enhance entrypoint script with sleep for MySQL readiness, update VerificationCode model to use CharField, and add responsive logo images in base template.

This commit is contained in:
2026-03-11 10:13:46 +01:00
parent 952ed5d76e
commit f7e658da7b
10 changed files with 16 additions and 4 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ class VerificationCode(models.Model):
RESET_PASSWORD = "RP"
user = models.ForeignKey(User, on_delete=models.CASCADE, related_name="user_belongsto", null=False, blank=False)
code = models.TextField(default = "", unique=True)
code = models.CharField(max_length=64, default="", unique=True)
code_mode = models.CharField(
max_length=2,
choices = VerificationModes.choices,