Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
"""
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>"
)