Files
web-test/app.py
T
2026-08-09 05:41:03 +02:00

25 lines
658 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import streamlit as st
st.set_page_config(
page_title="Python Web Test",
page_icon="🚀",
layout="centered"
)
st.title("🚀 Python Web Test Sitesi")
st.write("Bu site **Code-Server** üzerinde yazıldı, **Gitea**'ya pushlandı ve **Coolify** ile yayına alındı!")
st.divider()
# Etkileşimli Test Elemanları
name = st.text_input("Adınızı girin:")
if name:
st.success(f"Harika! Hoş geldin **{name}**, sistem tıkır tıkır çalışıyor! 🎉")
st.divider()
st.metric(label="Sunucu Durumu", value="Aktif / Online", delta="100% Uptime")
if st.button("Bir mesaj bırak"):
st.snow()
st.info("Test mesajı tetiklendi!")