diff --git a/basicswap/http_server.py b/basicswap/http_server.py index ea73800..de6445a 100644 --- a/basicswap/http_server.py +++ b/basicswap/http_server.py @@ -107,29 +107,7 @@ def listExplorerActions(swap_client): return actions -def html_content_start(title, h2=None, refresh=None): - content = '\n
' \ - + '' \ - + ('' if not refresh else ''.format(refresh)) \ - + 'Info: ' + info_str + '
' \ - + '' - return bytes(content, 'UTF-8') - - def page_error(self, error_str): - content = html_content_start('BasicSwap Error') \ - + 'Error: ' + error_str + '
' \ - + '