webpage.html 521 B

1234567891011121314151617181920
  1. <html>
  2. <head>
  3. Cat or Dog
  4. </head>
  5. <body>
  6. <br>
  7. <form action = "{{url_for('status')}}" method = "POST">
  8. Enter Name: <input type = "text" name = "unique_name">
  9. <br>
  10. Your favorite color: <input type = "text" name = "fav_col">
  11. <br>
  12. I'm a ...
  13. <br><input type = "radio" name = "animal" value = "cat"> ...cat person
  14. <br><input type = "radio" name = "animal" value = "dog"> ...dog person
  15. <br>
  16. <input type = "submit" name = "submit" value = "Submit">
  17. </form>
  18. </body>
  19. </html>