浏览代码

Adds test radio button input

Jose Reyes 5 年前
父节点
当前提交
42006f187c
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2
    0
      templates/index.html

+ 2
- 0
templates/index.html 查看文件

@@ -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 %}