Web app modification #29

Merged
Patrick_Pluto merged 2 commits from sageTheDm/ai-virtual-assistant:main into main 2024-09-16 16:46:07 +02:00
Showing only changes of commit f536885785 - Show all commits

View file

@ -31,5 +31,15 @@ def index():
return render_template('index.html', messages=messages)
@APP.route('/faq')
def faq():
return render_template('faq.html')
@APP.route('/contact')
def contact():
return render_template('contact.html')
if __name__ == '__main__':
APP.run(debug=True)
APP.run(debug=True)