10 lines
251 B
HTML
10 lines
251 B
HTML
<html>
|
|
<head>
|
|
<script type = "text/javascript"
|
|
src = "{{ url_for('static', filename = 'hello.js') }}" ></script>
|
|
</head>
|
|
|
|
<body>
|
|
<input type = "button" onclick = "sayHello()" value = "Say Hello" />
|
|
</body>
|
|
</html>
|