appengine/building-an-app/update/views/form.html (20 lines of code) (raw):

<!DOCTYPE html> <html> <head> <title>My App Engine App</title> </head> <body> <h2>Create a new post</h2> <form method="POST" action="/submit"> <div> <input type="text" name="name" placeholder="Name"> </div> <div> <textarea name="message" placeholder="Message"></textarea> </div> <div> <button type="submit">Submit</button> </div> </form> </body> </html>