Implemented file drop inputs, Preparing more tools
Update app.py, excel-password-remover.yml, and 30 more files...
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
from flask import render_template
|
||||
|
||||
|
||||
def render_button(inner_html: str, disabled: bool = False) -> str:
|
||||
def render_button(inner_html: str, disabled: bool = False, id: str = None) -> str:
|
||||
return render_template(
|
||||
"elements/button.jinja",
|
||||
button_inner_html=inner_html,
|
||||
button_disabled=disabled,
|
||||
button_extra_classes=""
|
||||
button_extra_classes="",
|
||||
button_id=id,
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user