chore: import upstream snapshot with attribution
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<title>First app</title>
|
||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||||
</head>
|
||||
<body>
|
||||
|
||||
{% from "_formhelpers.html" import render_field %}
|
||||
|
||||
<div>What's your name?</div>
|
||||
<form method=post action="/hello">
|
||||
|
||||
<dl>
|
||||
{{ render_field(form.sayhello) }}
|
||||
</dl>
|
||||
|
||||
<input type=submit value='Say Hello' name='submit_btn'>
|
||||
|
||||
</form>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user