__filename__ = "webapp_suspended.py" __author__ = "Bob Mottram" __license__ = "AGPL3+" __version__ = "1.1.0" __maintainer__ = "Bob Mottram" __email__ = "bob@freedombone.net" __status__ = "Production" import os from webapp_utils import htmlHeaderWithExternalStyle from webapp_utils import htmlFooter def htmlSuspended(cssCache: {}, baseDir: str) -> str: """Show the screen for suspended accounts """ suspendedForm = '' cssFilename = baseDir + '/epicyon-suspended.css' if os.path.isfile(baseDir + '/suspended.css'): cssFilename = baseDir + '/suspended.css' suspendedForm = htmlHeaderWithExternalStyle(cssFilename) suspendedForm += '
Account Suspended
\n' suspendedForm += 'See Terms of Service
\n' suspendedForm += '