loginpage / preference.py
nagasurendra's picture
Update preference.py
af4a394 verified
raw
history blame contribute delete
371 Bytes
import gradio as gr
def preference_interface(preference_section):
with preference_section:
gr.Markdown("Welcome to the Preferences Page!")
gr.Markdown("Customize your settings here.")
gr.Textbox(label="Preference 1", placeholder="Enter your preference")
gr.Checkbox(label="Enable Notifications")
gr.Button("Save Preferences")