Spaces:
Sleeping
Sleeping
Commit
·
5ebc6da
1
Parent(s):
863671d
label text boxes
Browse files
app.py
CHANGED
@@ -56,8 +56,8 @@ with gr.Blocks(title="Josiah's Gradio Playground") as playground:
|
|
56 |
with gr.Tab("⚠️ CC Validator"):
|
57 |
gr.Markdown("# THIS WAS NOT MEANT FOR MALICIOUS PURPOSES!")
|
58 |
gr.Markdown("This is meant to be a fun tool to use.")
|
59 |
-
num = gr.Textbox("CC Number (DO NOT USE MALICIOUSLY)")
|
60 |
-
valid = gr.Textbox("Is valid (DO NOT USE MALICIOUSLY)")
|
61 |
with gr.Row():
|
62 |
validate = gr.Button("Validate", variant="primary")
|
63 |
gr.ClearButton([num, valid])
|
|
|
56 |
with gr.Tab("⚠️ CC Validator"):
|
57 |
gr.Markdown("# THIS WAS NOT MEANT FOR MALICIOUS PURPOSES!")
|
58 |
gr.Markdown("This is meant to be a fun tool to use.")
|
59 |
+
num = gr.Textbox(label="CC Number (DO NOT USE MALICIOUSLY)")
|
60 |
+
valid = gr.Textbox(label="Is valid (DO NOT USE MALICIOUSLY)")
|
61 |
with gr.Row():
|
62 |
validate = gr.Button("Validate", variant="primary")
|
63 |
gr.ClearButton([num, valid])
|