diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2008-12-29 18:15:18 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2008-12-29 18:15:18 +0000 |
commit | 57ae44eecae0671607f4b92363e6e8761c9fda30 (patch) | |
tree | 137a143f8c42352493c737eec46d6d18d222c62f /demos/dialog | |
parent | d16788d49dcc4563a9e3611f2dccfb9a73220272 (diff) | |
download | jquery-ui-57ae44eecae0671607f4b92363e6e8761c9fda30.tar.gz jquery-ui-57ae44eecae0671607f4b92363e6e8761c9fda30.zip |
dialog demo: fixed form field ids
Diffstat (limited to 'demos/dialog')
-rw-r--r-- | demos/dialog/modal_form.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/dialog/modal_form.html b/demos/dialog/modal_form.html index c30eac6bb..1114b0ab1 100644 --- a/demos/dialog/modal_form.html +++ b/demos/dialog/modal_form.html @@ -49,9 +49,9 @@ <label for="name">Name</label> <input type="text" name="name" id="name" class="text" /> <label for="email">Email</label> - <input type="text" name="email" id="birthday" value="" class="text" />
+ <input type="text" name="email" id="email" value="" class="text" />
<label for="password">Password</label> - <input type="password" name="password" id="birthday" value="" class="text" /> + <input type="password" name="password" id="password" value="" class="text" /> </fieldset> </form>
</div>
|