main: Updated register page
All checks were successful
Build Docker / Build Bot (push) Successful in 23s
Build Docker / Build Master (push) Successful in 30s

This commit is contained in:
2023-09-02 13:48:10 +10:00
parent 8ab4ed574f
commit 79a8e092eb
3 changed files with 14 additions and 5 deletions

View File

@@ -442,6 +442,15 @@ def home():
return render_template('index.html', site_count = str(len(sites)))
# Register page
@app.route('/register')
def register():
buy_license_link = os.getenv('BUY_LICENSE_LINK')
# Show register template
return render_template('register.html', buy_license_link=buy_license_link)
# Admin page
@app.route('/admin')
def admin():