* adjust style.

This commit is contained in:
wangyidong
2012-12-20 08:00:07 +00:00
parent 7c69fc9b5a
commit cd4915729d
17 changed files with 119 additions and 46 deletions
+8 -8
View File
@@ -23,7 +23,7 @@
<th class='w-150px'><?php echo $lang->user->realname;?></th>
<th class='w-150px'><?php echo $lang->user->role;?></th>
<th><?php echo $lang->user->email;?></th>
<th class='w-80px'><?php echo $lang->user->gender;?></th>
<th class='w-60px'><?php echo $lang->user->gender;?></th>
<th><?php echo $lang->user->password;?></th>
</tr>
<?php $depts = $depts + array('ditto' => $lang->user->ditto)?>
@@ -32,17 +32,17 @@
<tr class='a-center'>
<td><?php echo $i+1;?></td>
<td><?php echo html::select("dept[$i]", $depts, $i > 0 ? 'ditto' : $deptID, "class='select-2'");?>
<td><?php echo html::input("account[$i]", '', "class='text-2' autocomplete='off'");?></td>
<td><?php echo html::input("account[$i]", '', "class='text-2 account_$i' autocomplete='off' onchange='changeEmail($i)'");?></td>
<td><?php echo html::input("realname[$i]", '', "class='text-2'");?></td>
<td><?php echo html::select("role[$i]", $lang->user->roleList, $i > 0 ? 'ditto' : '', "class='select-2'");?></td>
<td><?php echo html::input("email[$i]", '', "class='text-3'");?></td>
<td><?php echo html::input("email[$i]", '', "class='text-3 email_$i' onchange='setDefaultEmail($i)'");?></td>
<td><?php echo html::radio("gender[$i]", (array)$lang->user->genderList, 'm');?></td>
<td>
<?php
echo html::input("password[$i]", '', "class='text-3' autocomplete='off'");
echo "<input type='checkbox' name='ditto[$i]' " . ($i> 0 ? "checked" : '') . " />"
?>
</td>
<?php
echo html::input("password[$i]", '', "class='text-3' autocomplete='off'");
echo "<input type='checkbox' name='ditto[$i]' " . ($i> 0 ? "checked" : '') . " /> {$lang->user->ditto}";
?>
</td>
</tr>
<?php endfor;?>
<tr><td colspan='8' class='a-center'><?php echo html::submitButton() . html::resetButton();?></td></tr>