1234567891011121314151617181920 |
- <html>
- <head>
- Cat or Dog
- </head>
- <body>
- <br>
- <form action = "{{url_for('status')}}" method = "POST">
- Enter Name: <input type = "text" name = "unique_name">
- <br>
- Your favorite color: <input type = "text" name = "fav_col">
- <br>
- I'm a ...
- <br><input type = "radio" name = "animal" value = "cat"> ...cat person
- <br><input type = "radio" name = "animal" value = "dog"> ...dog person
- <br>
- <input type = "submit" name = "submit" value = "Submit">
- </form>
- </body>
- </html>
|