witten
/
luminotes
Archived
1
0
Fork 0
This repository has been archived on 2023-12-16. You can view files and clone it, but cannot push or open issues or pull requests.
luminotes/view/Thanks_download_error_note.py

32 lines
827 B
Python

from Tags import Span, H3, P, A
class Thanks_download_error_note( Span ):
def __init__( self ):
Span.__init__(
self,
H3( u"thank you" ),
P(
u"""
Thank you for purchasing Luminotes Desktop!
""",
),
P(
u"""
Luminotes has not yet received confirmation of your payment. Please
check back in a few minutes by refreshing this page, or check your
email for a Luminotes Desktop download message. You will also receive
a separate email receipt for this purchase.
"""
),
P(
"""
If your payment is not received within the next few minutes, please
""",
A( u"contact support", href = u"/contact_info", target = "_top" ),
u"""
for assistance.
""",
),
)