We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c14f03b commit 6ba7dc2Copy full SHA for 6ba7dc2
1 file changed
__init__.py
@@ -54,7 +54,11 @@ def get_client_ip():
54
@builder.route("/start-building", methods=["GET"])
55
def start_building():
56
form = SignupForm()
57
- return render_template("start-building.html", form=form)
+ app_config = dict(app.config)
58
+ SUBSCRIBIE_DOMAIN = app_config.get("SUBSCRIBIE_DOMAIN")
59
+ return render_template(
60
+ "start-building.html", form=form, SUBSCRIBIE_DOMAIN=SUBSCRIBIE_DOMAIN
61
+ )
62
63
64
def submit_new_site_build(
0 commit comments