Update app.py
Browse filesAdded follow me link to instagram
app.py
CHANGED
|
@@ -138,6 +138,17 @@ with ui.Blocks(title="Cipherer") as demo:
|
|
| 138 |
inputs=[decrypt_key, cipher_input],
|
| 139 |
outputs=[decrypt_output, decrypt_mapping]
|
| 140 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 141 |
|
| 142 |
if __name__ == "__main__":
|
| 143 |
demo.launch(theme=ui.themes.Soft())
|
|
|
|
| 138 |
inputs=[decrypt_key, cipher_input],
|
| 139 |
outputs=[decrypt_output, decrypt_mapping]
|
| 140 |
)
|
| 141 |
+
|
| 142 |
+
# --- FOOTER CREDITS ---
|
| 143 |
+
ui.HTML(
|
| 144 |
+
"""
|
| 145 |
+
<div style="text-align: center; margin-top: 25px;">
|
| 146 |
+
<a href="https://www.instagram.com/kosmos.cpp" target="_blank" style="text-decoration: none; color: #E1306C; font-weight: bold; font-size: 15px;">
|
| 147 |
+
Follow Me ig@kosmos.cpp
|
| 148 |
+
</a>
|
| 149 |
+
</div>
|
| 150 |
+
"""
|
| 151 |
+
)
|
| 152 |
|
| 153 |
if __name__ == "__main__":
|
| 154 |
demo.launch(theme=ui.themes.Soft())
|