feat: add /faq page and link from request form
This commit is contained in:
parent
382b05d7f8
commit
023b4fade7
5 changed files with 168 additions and 1 deletions
6
app.py
6
app.py
|
|
@ -377,6 +377,12 @@ def thanks(rid):
|
|||
return render_template('thanks.html', req=req)
|
||||
|
||||
|
||||
@app.route('/faq')
|
||||
def faq():
|
||||
"""Customer-facing frequently asked questions page."""
|
||||
return render_template('faq.html')
|
||||
|
||||
|
||||
@app.route('/play/<token>')
|
||||
def play(token):
|
||||
"""
|
||||
|
|
|
|||
Reference in a new issue