Ignore:
Timestamp:
10/12/12 15:48:06 (12 years ago)
Author:
Kris Deugau
Message:

/branches/htmlform

Finally dug up a least-nasty way to effectively get rid of the
useless <legend> tag (required in a <fieldset>, in turn required
in a <form>, if you want to be valid HTML 4.01 Strict).
See #3.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/htmlform/templates/admin/showusers.tmpl

    r484 r513  
    55</ul>
    66<hr>Add new user:<form action="admin.cgi" method="POST">
    7 <fieldset><legend></legend>
     7<fieldset><legend class="noshow">&nbsp;</legend>
    88Username: <input name=username><br>
    99Password: <input name=password> <input type=checkbox name=preenc>Password is pre-encrypted (MUST be crypt() encrypted)<br>
     
    2020<tr>
    2121<form action="admin.cgi" method="POST">
    22 <fieldset><legend></legend>
     22<fieldset><legend class="noshow">&nbsp;</legend>
    2323<input type="hidden" name="action" value="updacl">
    2424<td><TMPL_VAR NAME=username><input type="hidden" name="username" value="<TMPL_VAR NAME=username>"></td>
     
    3232<td>
    3333<form action="admin.cgi" method="POST">
    34 <fieldset><legend></legend>
     34<fieldset><legend class="noshow">&nbsp;</legend>
    3535<input type=hidden name=action value=deluser>
    3636<input type=hidden name=username value="<TMPL_VAR NAME=username>">
Note: See TracChangeset for help on using the changeset viewer.