Skip to content

Commit

Permalink
radio control
Browse files Browse the repository at this point in the history
  • Loading branch information
giscdhssg committed May 14, 2012
1 parent 830b028 commit 4672369
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,13 @@ <h2>{{ greeting }} <a href="{{ url }}">{{ url_linktext }}</a></h2>
<label for="name">Name:</label>
<input id="name" name="name" value="{{ contact.name|escape }}" />
<br /><br />
<label for="gender">Gender:</label>
<label><input type="radio" name="gender" value="Male" /> Male</label>
<label><input type="radio" name="gender" value="Female" checked="checked" /> Female</label>
<br /><br />
<label for="dob">Date of Birth:</label>
<input type="date" class="date-pick" id="dob" name="dob" value="{{ contact.dob|escape }}" />
<br /><br />
<br /><br />
<label for="email">Email:</label>
<input id="email" name="email" value="{{ contact.email|escape }}" />
<br /><br />
Expand Down

0 comments on commit 4672369

Please sign in to comment.