diff options
author | Dexter Morgan <dmorgan@mageia.org> | 2010-12-21 09:13:16 +0000 |
---|---|---|
committer | Dexter Morgan <dmorgan@mageia.org> | 2010-12-21 09:13:16 +0000 |
commit | 306e372a1f1690456154e98e671f764395125742 (patch) | |
tree | 05a0d7c1ad09df728edbcc0e6d7c45fc06fa3a99 | |
parent | 3ec0de1ca4abce545b4bd8e3b1afe54d5e27c600 (diff) | |
download | identity-306e372a1f1690456154e98e671f764395125742.tar identity-306e372a1f1690456154e98e671f764395125742.tar.gz identity-306e372a1f1690456154e98e671f764395125742.tar.bz2 identity-306e372a1f1690456154e98e671f764395125742.tar.xz identity-306e372a1f1690456154e98e671f764395125742.zip |
Merge patch from Maarten Vanraes that fix some HTML errors
-rw-r--r-- | root/index.tt | 2 | ||||
-rw-r--r-- | root/user/index.tt | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/root/index.tt b/root/index.tt index 7dd2939..c1e5735 100644 --- a/root/index.tt +++ b/root/index.tt @@ -10,7 +10,7 @@ <label for="password_">[% l('Password') %]</label> <input id="password_" type="password" name="password" /> <br /> - <button type="submit" value="[% l('Login') %]" />[% l('Login') %]</button> + <button type="submit" value="[% l('Login') %]" >[% l('Login') %]</button> </div> <div id="login_form_line"> <span><a href="/register">[% l('Register') %]</a> | diff --git a/root/user/index.tt b/root/user/index.tt index 24caabd..bbc7f64 100644 --- a/root/user/index.tt +++ b/root/user/index.tt @@ -1,14 +1,14 @@ <div id="input_form"> <form method="post" action=""> - <table border=0> + <table> <tr><th>[% l('Attribute') %]</th><th>[% l('Value') %]</th><th></th></tr> [% FOREACH attr IN values %] <tr> <td>[% attr.name %]</td> <td> [% FOREACH val IN attr.values %] - [% IF attr.editable %]<input type=hidden name="[% attr.name %]_old" value="[% val %]"> - <input name="[% attr.name %]_new" value="[% val %]"> + [% IF attr.editable %]<input type=hidden name="[% attr.name %]_old" value="[% val %]" /> + <input name="[% attr.name %]_new" value="[% val %]" /> [% ELSE %] [% val %] <br/> |