added pesrpective a

This commit is contained in:
alicestrt 2020-09-08 16:43:31 +02:00
parent 88a7b13f9d
commit 2595e783de
3 changed files with 12 additions and 4 deletions

Binary file not shown.

View File

@ -8,7 +8,6 @@ def hello_world():
return 'Hello, World!'
@app.route('/hello/')
@app.route('/hello/<name>')
def hello(name=None):
return render_template('hello.html', name=name)
@app.route('/perspectiveA/')
def perspectiveA():
return render_template('perspectiveA.html')

View File

@ -0,0 +1,9 @@
<!doctype html>
<html>
<head>
<title>Perspective A</title>
</head>
<body>
<h1>persssss</h1>
</body>
</html>