1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- defined('IN_ADMIN') or exit('No permission resources.');
- include $this->admin_tpl('header', 'admin');
- ?>
- <div class="pad-10">
- <div class="explain-col search-form">
- <?php echo get_smsnotice('setting');?>
- </div>
- <div class="common-form">
- <form name="myform" action="?m=sms&c=sms&a=sms_setting" method="post" id="myform">
- <table width="100%" class="table_form">
- <tr>
- <td width="120"><?php echo L('sms_enable')?></td>
- <td><input name="setting[sms_enable]" value="1" type="radio" id="sms_enable" <?php if($this->sms_setting[sms_enable] == 1) {?>checked<?php }?>> <?php echo L('open')?>
- <input name="setting[sms_enable]" value="0" type="radio" id="sms_enable" <?php if($this->sms_setting[sms_enable] == 0) {?>checked<?php }?>> <?php echo L('close')?></td>
- </tr>
- <tr>
- <td width="120">sms_uid <font color="#C0C0C0">(<?php echo L('userid')?>)</font></td>
- <td><input type="text" name="setting[userid]" size="20" value="<?php echo $this->sms_setting[userid]?>" id="userid"></td>
- </tr>
- <tr>
- <td width="120">sms_pid <font color="#C0C0C0">(<?php echo L('productid')?>)</font></td>
- <td><input type="text" name="setting[productid]" size="20" value="<?php echo $this->sms_setting[productid]?>" id="productid"></td>
- </tr>
- <tr>
- <td width="120">sms_passwd <font color="#C0C0C0">(<?php echo L('sms_key')?>)</font></td>
- <td><label><input type="input" id="sms_key" name="setting[sms_key]" value="<?php echo $this->sms_setting[sms_key]?>" size="50">
- <input type="hidden" name="pc_hash" value="<?php echo $_GET['pc_hash'];?>" size="50"></label></td>
- </tr>
- </table>
- <div class="bk15"></div>
- <input name="dosubmit" type="submit" value="<?php echo L('submit')?>" class="button" id="dosubmit">
- </form>
- </div>
- </body>
- </html>
|