Flask Mail added. Contact us page complete.

This commit is contained in:
2024-04-24 19:51:31 +01:00
parent a282c6dbcc
commit 7d4ef4b429
15 changed files with 125 additions and 39 deletions

View File

@@ -23,13 +23,16 @@ from lib import argument_validation as av
from flask_wtf import FlaskForm
from abc import abstractproperty
# VARIABLE INSTANTIATION
# CLASSES
class Model_View_Contact(Model_View_Base):
# Attributes
ID_EMAIL = 'email'
ID_MESSAGE = 'msg'
ID_NAME = 'name'
@property
def title(self):
return 'Contact'