Spaces:
Running
Running
Fixed terms link error
Browse files
server.py
CHANGED
@@ -53,19 +53,19 @@ def add_dream():
|
|
53 |
dreams.append(request.args.get('dream'))
|
54 |
return ''
|
55 |
|
56 |
-
@application.route('/disclaimer'
|
57 |
def disclaimer():
|
58 |
return render_template("disclaimer.html")
|
59 |
|
60 |
-
@application.route('/eula'
|
61 |
def eula():
|
62 |
return render_template("eula.html")
|
63 |
|
64 |
-
@application.route('/privacy_policy'
|
65 |
def privacyPolicy():
|
66 |
return render_template("privacy_policy.html")
|
67 |
|
68 |
-
@application.route('/terms_of_service'
|
69 |
def termsOfService():
|
70 |
return render_template("terms_of_service.html")
|
71 |
|
|
|
53 |
dreams.append(request.args.get('dream'))
|
54 |
return ''
|
55 |
|
56 |
+
@application.route('/disclaimer')
|
57 |
def disclaimer():
|
58 |
return render_template("disclaimer.html")
|
59 |
|
60 |
+
@application.route('/eula')
|
61 |
def eula():
|
62 |
return render_template("eula.html")
|
63 |
|
64 |
+
@application.route('/privacy_policy')
|
65 |
def privacyPolicy():
|
66 |
return render_template("privacy_policy.html")
|
67 |
|
68 |
+
@application.route('/terms_of_service')
|
69 |
def termsOfService():
|
70 |
return render_template("terms_of_service.html")
|
71 |
|