From 6ea4e72e8a2280ff76e3b2f1d06369ed59d304fd Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Wed, 20 Sep 2023 22:29:27 +1000 Subject: [PATCH] main: Add style to tlsa --- master/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/master/main.py b/master/main.py index ede59ba..a3cbbff 100644 --- a/master/main.py +++ b/master/main.py @@ -523,9 +523,9 @@ def success(): if "tlsa" in json: tlsa = json['tlsa'] - return render_template('success.html', title="Your site is ready!",message="Success
Domain: " + domain + "
IP: " + publicIP + "
TLSA: " + tlsa + "
Make sure to add the TLSA record to _443._tcp." + domain + " or *." + domain + "") + return render_template('success.html', title="Your site is ready!",message="Success
Domain: " + domain + "
IP: " + publicIP + "
TLSA: " + tlsa + "
Make sure to add the TLSA record to _443._tcp." + domain + " or *." + domain + "") else: - return render_template('success.html', title="Your site is installing.
Please wait...",message="Domain: " + domain + "
IP: " + publicIP + "
TLSA: Pending
No TLSA record found") + return render_template('success.html', title="Your site is installing.
Please wait...",message="Domain: " + domain + "
IP: " + publicIP + "
TLSA: Pending
No TLSA record found") elif request.args.get('status') == 'creating': return render_template('success.html')