|
@@ -7,9 +7,9 @@
|
7
|
7
|
{% block content %}
|
8
|
8
|
<form method="post">
|
9
|
9
|
<label for="name">Name</label>
|
10
|
|
- <input name="name" id="name" value="{{ request.form['cName'] }}" required></input><br>
|
|
10
|
+ <input name="name" id="name" required></input><br>
|
11
|
11
|
<label for="email">email</label>
|
12
|
|
- <input name="email" id="email" value="{{ request.form['cEmail'] }}" required></input><br>
|
|
12
|
+ <input name="email" id="email" required></input><br>
|
13
|
13
|
<input type="radio" name="station" id="station1" value="Fulano"> Fulano </input><br>
|
14
|
14
|
<input type="radio" name="station" id="station2" value="Mengana"> Mengana </input><br>
|
15
|
15
|
<input type="submit" value="Get ticket">
|