Skip to content
Snippets Groups Projects
messages.py 2.21 KiB
Newer Older
Bo-Chun Chen's avatar
Bo-Chun Chen committed
"""
Messages used in account management app
"""

welcome_message = (
    "The information below will be used to create your account. Please fill in"
    " the reason for requesting your account as this helps us understand our"
    " user base. Please be aware that the use of this resource is governed by"
    " <a href='https://www.uab.edu/it/home/policies' target='_blank'>UAB"
    " Information Technology Security Policies.</a><br><br>Contact <a"
    " href='mailto:support@listserv.uab.edu'>Research Computing</a> if you"
    " have any questions.<br>"
)
cancel_message = (
    "Close current tab to end session.<br>Contact <a href="
    "mailto:support@listserv.uab.edu"
    ">Research Computing</a> if you have any questions.<br>"
)
error_message = (
    "An error occurred while creating your account. Research Computing team"
    " has been notified and is working on fixing it.<br>Contact <a"
    " href='mailto:support@listserv.uab.edu'>Research Computing</a> if you"
    " have any questions.<br>"
)
unauthorized_message = (
    "Your UAB login is not authorized to use UAB Research Computing Systems."
    " Contact <a href='mailto:support@listserv.uab.edu'>Research Computing</a>"
    " to resolve this issue.<br>"
)
account_hold_message = (
    "Your UAB Research Computing account is currently on hold.<br>Please"
    " contact <a href=mailto:support@listserv.uab.edu>Research Computing</a>"
    " or attend the weekly <a href='https://uabrc.github.io/#contact-us'"
    " target='_blank'>office hours</a> to resolve this issue.<br>"
)
pre_certification_message = (
    "Annual account certification is required for continued access to Research"
    " Computing Systems.<br>To continue with the self certification process"
    " click on continue below.<br><br>"
)
certification_message = (
    "This resource is governed by <a"
    " href='https://www.uab.edu/it/home/policies' target='_blank'>UAB"
    " Information Technology Security Policies.</a><br><br>Please verify your"
    " information in the form below and press the Certify Account to complete"
    " the certification process.<br>"
)
good_standing_message = (
    "Your account is in good standing. Click <a"
    " href=https://rc.uab.edu>here</a> to proceed to dashboard.<br>"
)