Spaces:
Running
Running
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +4 -11
src/streamlit_app.py
CHANGED
|
@@ -31,6 +31,9 @@ from streamlit_extras.stylable_container import stylable_container
|
|
| 31 |
|
| 32 |
|
| 33 |
|
|
|
|
|
|
|
|
|
|
| 34 |
# --- Payment Variables ---
|
| 35 |
# !!! CRITICAL 1: Replace this placeholder with your actual PayPal email or Merchant ID. !!!
|
| 36 |
PAYPAL_BUSINESS_EMAIL = "maria.tsilimos@proton.me"
|
|
@@ -55,7 +58,7 @@ PAYMENT_LINK = (
|
|
| 55 |
f"return={SUCCESS_URL}"
|
| 56 |
)
|
| 57 |
|
| 58 |
-
# HTML for the yellow "Upgrade to Premium" Button
|
| 59 |
paypal_html = f"""
|
| 60 |
<div style="margin-top: 0px; text-align: right;">
|
| 61 |
<a href="{PAYMENT_LINK}" target="_blank" style="
|
|
@@ -73,16 +76,6 @@ paypal_html = f"""
|
|
| 73 |
" onmouseover="this.style.backgroundColor='#FFAA00'" onmouseout="this.style.backgroundColor='#FFC439'">
|
| 74 |
Upgrade to Premium, ${AMOUNT:.2f}/a year
|
| 75 |
</a>
|
| 76 |
-
|
| 77 |
-
<!-- Instructional note added below the button -->
|
| 78 |
-
<p style="
|
| 79 |
-
font-size: 10px;
|
| 80 |
-
color: #777;
|
| 81 |
-
margin-top: 5px;
|
| 82 |
-
line-height: 1.2;
|
| 83 |
-
">
|
| 84 |
-
Note: After purchase, press "Return to Seller" to be redirected to your new app.
|
| 85 |
-
</p>
|
| 86 |
</div>
|
| 87 |
"""
|
| 88 |
|
|
|
|
| 31 |
|
| 32 |
|
| 33 |
|
| 34 |
+
|
| 35 |
+
|
| 36 |
+
|
| 37 |
# --- Payment Variables ---
|
| 38 |
# !!! CRITICAL 1: Replace this placeholder with your actual PayPal email or Merchant ID. !!!
|
| 39 |
PAYPAL_BUSINESS_EMAIL = "maria.tsilimos@proton.me"
|
|
|
|
| 58 |
f"return={SUCCESS_URL}"
|
| 59 |
)
|
| 60 |
|
| 61 |
+
# HTML for the yellow "Upgrade to Premium" Button (Note removed)
|
| 62 |
paypal_html = f"""
|
| 63 |
<div style="margin-top: 0px; text-align: right;">
|
| 64 |
<a href="{PAYMENT_LINK}" target="_blank" style="
|
|
|
|
| 76 |
" onmouseover="this.style.backgroundColor='#FFAA00'" onmouseout="this.style.backgroundColor='#FFC439'">
|
| 77 |
Upgrade to Premium, ${AMOUNT:.2f}/a year
|
| 78 |
</a>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 79 |
</div>
|
| 80 |
"""
|
| 81 |
|