Skip to content

Commit a0a5fc5

Browse files
authored
Update README.md
1 parent 046a7cf commit a0a5fc5

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -88,16 +88,16 @@ def button(request):
8888
return render(request,'geniusvoice.html')
8989
9090
def output(request):
91-
92-
output_data = "hello world"
9391
94-
return render(request,"geniusvoice.html",{"output_data":output_data})
92+
output_data = "Genius Voice eliminates friction. For years people have had to learn to interact with computers, we turn this around. We teach computers how to interact with humans through voice. This creates a seamless experience without losing the human touch."
93+
website_link = "Visit our website: " + "https://www.geniusvoice.nl/"
94+
95+
return render(request,"geniusvoice.html",{"output_data":output_data, "website_link":website_link})
9596
9697
```
9798

9899
### step 9: Copy and paste this code in geniusvoice.html.
99100
```
100-
101101
<!DOCTYPE html>
102102
<html>
103103
<head>
@@ -108,6 +108,7 @@ def output(request):
108108
<body>
109109
<button onclick="location.href='{% url 'script' %}'">Click To Execute Script</button> <hr>
110110
{{output_data}}
111+
{{website_link}}
111112
</body>
112113
</html>
113114
```

0 commit comments

Comments
 (0)