has12zen commited on
Commit
7d25dea
1 Parent(s): 1ed207d
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -3,13 +3,13 @@ from utils import *
3
 
4
  with gr.Blocks() as demo:
5
  gr.Markdown("# Enter the 2 Docs.")
6
- with gr.Tab("Encrypt"):
7
  with gr.Row():
8
  with gr.Column():
9
  encrypt_msg = gr.Textbox(lines=2, label="Doc1")
10
  encrypt_key = gr.Textbox(lines=2, label="Doc2")
11
  encrypt_output = gr.Textbox()
12
- encrypt_button = gr.Button("Encrypt")
13
 
14
  encrypt_button.click(final_main, inputs=[encrypt_msg, encrypt_key ], outputs=[encrypt_output])
15
 
 
3
 
4
  with gr.Blocks() as demo:
5
  gr.Markdown("# Enter the 2 Docs.")
6
+ with gr.Tab("Checker"):
7
  with gr.Row():
8
  with gr.Column():
9
  encrypt_msg = gr.Textbox(lines=2, label="Doc1")
10
  encrypt_key = gr.Textbox(lines=2, label="Doc2")
11
  encrypt_output = gr.Textbox()
12
+ encrypt_button = gr.Button("Check")
13
 
14
  encrypt_button.click(final_main, inputs=[encrypt_msg, encrypt_key ], outputs=[encrypt_output])
15