Selaa lähdekoodia

Adds test radio button input

Jose Reyes 5 vuotta sitten
vanhempi
commit
42006f187c
1 muutettua tiedostoa jossa 2 lisäystä ja 0 poistoa
  1. 2
    0
      templates/index.html

+ 2
- 0
templates/index.html Näytä tiedosto

10
         <input name="name" id="name" value="{{ request.form['cName'] }}" required>
10
         <input name="name" id="name" value="{{ request.form['cName'] }}" required>
11
 		<label for="email">email</label>
11
 		<label for="email">email</label>
12
         <input name="email" id="email" value="{{ request.form['cEmail'] }}" required>
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
         <input type="submit" value="Get ticket">
15
         <input type="submit" value="Get ticket">
14
     </form>
16
     </form>
15
 {% endblock %}
17
 {% endblock %}