Store app.py deprecated.\nAdmin pages added: privacy notice, accessibility, data retention, license. Improvements to accessibility of those pages pending.

This commit is contained in:
2024-05-01 20:45:20 +01:00
parent a95ae3654b
commit 46f2f730e2
46 changed files with 3302 additions and 850 deletions

View File

@@ -24,7 +24,7 @@ class Form_Contact(FlaskForm):
email = StringField('Email address')
CC = BooleanField('Would you like to receive a copy of this email request?') # not in use
name = StringField('Name')
msg = TextAreaField('Message')
message = TextAreaField('Message')
recaptcha = RecaptchaField()
submit = SubmitField('Submit')
@@ -32,7 +32,7 @@ class Form_Register(FlaskForm):
email = StringField('Email address')
CC = BooleanField('Would you like to receive a copy of this email request?') # not in use
name = StringField('Name')
msg = TextAreaField('Message')
message = TextAreaField('Message')
submit = SubmitField('Submit')