Browse Source

Adds test radio button input

Jose Reyes 5 years ago
parent
commit
42006f187c
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      templates/index.html

+ 2
- 0
templates/index.html View File

@@ -10,6 +10,8 @@
10 10
         <input name="name" id="name" value="{{ request.form['cName'] }}" required>
11 11
 		<label for="email">email</label>
12 12
         <input name="email" id="email" value="{{ request.form['cEmail'] }}" required>
13
+        <input type="radio" name="station" id="station1" value="Fulano"> Fulano </input><br>
14
+        <input type="radio" name="station" id="station2" value="Mengana"> Mengana </input><br>
13 15
         <input type="submit" value="Get ticket">
14 16
     </form>
15 17
 {% endblock %}