diff --git a/templates/bot_create.html b/templates/bot_create.html index d1b9dad..8e908f4 100644 --- a/templates/bot_create.html +++ b/templates/bot_create.html @@ -27,6 +27,11 @@

You now need to give your bot access to the {{ session['instance'] }} account you have created for it. If you have not yet created an account on {{ session['instance'] }} for your bot to use, please do so now.

Sign in to the {{ session['instance'] }} account you want your bot to use, then click next to begin the authorisation process.

+ {% elif session['step'] == 4 %} +

Congratulations!

+

FediBooks has successfully authenticated with {{ session['instance'] }}, and your bot is ready to be configured. Click finish to return to the bot management screen.

+

To get your bot working, you need to add at least one account for it to learn from. You can do so by clicking the button. To configure settings such as posting frequency and content warnings, click the button.

+ {% endif %}
diff --git a/webui.py b/webui.py index 9c3ab52..9c16207 100644 --- a/webui.py +++ b/webui.py @@ -33,7 +33,7 @@ def bot_edit(id): @app.route("/bot/create/") def bot_create(): - session['step'] = 3 + session['step'] = 4 session['instance'] = "botsin.space" session['instance_type'] = "Mastodon" return render_template("bot_create.html")