Commit
·
5b1ac8b
1
Parent(s):
1f9e9c1
refactor: Update variable names in app.py for clarity
Browse files
app.py
CHANGED
@@ -48,8 +48,8 @@ def app():
|
|
48 |
pvt = gr.Textbox(label="Your Private Key", placeholder="Your Private Key will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
|
49 |
pvtfile = gr.File(label="Download your Private Key")
|
50 |
with gr.Column():
|
51 |
-
csr = gr.Textbox(label="Your
|
52 |
-
csrfile = gr.File(label="Download your
|
53 |
with gr.Column():
|
54 |
crt = gr.Textbox(label="Your SSL Certificate", placeholder="Your SSL Certificate will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
|
55 |
crtfile = gr.File(label="Download your SSL Certificate")
|
|
|
48 |
pvt = gr.Textbox(label="Your Private Key", placeholder="Your Private Key will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
|
49 |
pvtfile = gr.File(label="Download your Private Key")
|
50 |
with gr.Column():
|
51 |
+
csr = gr.Textbox(label="Your CSR", placeholder="Your CSR will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
|
52 |
+
csrfile = gr.File(label="Download your CSR")
|
53 |
with gr.Column():
|
54 |
crt = gr.Textbox(label="Your SSL Certificate", placeholder="Your SSL Certificate will appear here, after successful SSL generation", type="text", interactive=False, show_copy_button=True, lines=10, max_lines=10)
|
55 |
crtfile = gr.File(label="Download your SSL Certificate")
|