📄 user_post.tpl.php
字号:
<html>
<head>
<title>vodcms.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="../../images/admin/public.css" rel="stylesheet" type="text/css" />
<link href="../../images/admin/style.css" rel="stylesheet" type="text/css" />
<body>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr align="center" valign="top">
<td width="*" align="center" valign="top">
<!-- ######### begin ######### -->
<div class="Block">
<div class="BlockBar">批量编辑用户</div>
<form id="form1" name="form1" method="post" action="<?php echo $this->installdir;?>?mod=user&action=post&do=finish">
<table border="0" align="center" cellpadding="4" cellspacing="1" class="tab">
<tr class="row">
<td width="19%" align="right" class="align-right">用户名:</td>
<td width="81%"><?php echo implode(',', $this->username);?></td>
</tr>
<?php
if ($this->post == 'locked'){?>
<tr class="row">
<td class="align-right">更改状态为:</td>
<td class="align-left"><input name="locked" type="radio" class="checkbox" value="0" checked="checked" />
已激活
<input name="locked" type="radio" class="checkbox" value="1" />
锁定中
<input name="locked" type="radio" class="checkbox" value="2" />
未激活</td>
</tr>
<?php
}
if($this->post == 'delete'){?>
<tr class="row">
<td class="align-right">确认删除用户:</td>
<td class="align-left"> </td>
</tr>
<?php
}
if ($this->post =='usergroup'){?>
<tr class="row">
<td class="align-right">新用户组为:</td>
<td class="align-left"><select name="usergroup">
<option value="all">请选择用户组</option>
<?php echo $this->groupOption;?>
</select> </td>
</tr>
<?php
}
if ($this->post == 'point'){?>
<tr class="row">
<td class="align-right">增加点数:</td>
<td class="align-left"><input name="point" type="text" id="point" size="5" />
*请输入数字。 在当前帐户基础上加指定点数 </td>
</tr>
<?php
}
if ($this->post == 'lifetime'){?>
<tr class="row">
<td class="align-right">增加天数:</td>
<td class="align-left"><input name="lifetime" type="text" id="lifetime" size="5" />
*请输入数字。为用户添加填写天数的观看时间</td>
</tr>
<?php
}?>
<?php
if ($this->post == 'usertype'){?>
<tr class="row">
<td class="align-right">消费模式:</td>
<td class="align-left"><select name="usertype">
<option value="0">计点用户</option>
<option value="1">包月用户</option>
</select></td>
</tr>
<?php
}?>
<tr class="row">
<td class="align-right"> </td>
<td class="align-left"><input name="search" type="submit" class="btn" id="search" value=" 提 交 " />
<input name="Submit" type="button" class="btn" value=" 返 回 " onclick="history.back()" /></td>
</tr>
<?php
foreach($this->username as $username){?>
<input type="hidden" name="username[]" value="<?php echo $username;?>" />
<?php
}?>
<input type="hidden" name="post" value="<?php echo $this->post;?>" />
<input type="hidden" name="jumpurl" value="<?php echo $_SERVER['HTTP_REFERER'];?>" />
</table>
</form>
</div>
<div id="App-Version-Prompt" style="display:none;">
<div class="space"></div>
<div class="Block">
<div class="BlockBar">版本更新信息</div>
<div class="BlockContent" id="App-Version-Prompt-Body" style="padding:20px 5px 20px 5px; text-align:center; background:#FFFFCC;">loading...</div>
</div>
</div>
<!-- ########## end ########## -->
</td>
<td width="5"></td>
<td width="150" align="center" valign="top">
<?php
echo $this->render('menu');
?>
</td>
</tr>
</table>
<?php
echo $this->render('copyright');
?>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -