josiauhlol commited on
Commit
5ebc6da
·
1 Parent(s): 863671d

label text boxes

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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])