| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 | <{include file='../public/admin_header.html'}><{include file='../public/admin_navi.html'}><!-- Right side column. Contains the navbar and content of the page --><aside class="right-side">	<!-- Content Header (Page header) -->	<section class="content-header">		<h1>			添加邮件模板			<small>Control panel</small>		</h1>		<ol class="breadcrumb">			<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>			<li class="active">Blank page</li>		</ol>	</section>	<!-- Main content -->	<section class="content">		<div class="span9">			<{if $info}>			<div   class="alert alert-danger alert-dismissable"><{$info}></div>			<{/if}>			<div id='main' class="form-actions">				<form method="post" action="" >					<table class="table table-bordered" style="margin-top:15px;">						<tr>							<td>模板标题</td>							<td>								<input type="text" name="msg_title" class="form-control" style="width:450px;" value="<{$data.msg_title}>" />							</td>						</tr>						<!--<tr>-->							<!--<td>模板内容</td>-->							<!--<td>-->								<!--<div>-->									<!--<textarea name="msg_content" id="msg_content" style="height: 255px; width: 30%; "><{$data.msg_content}></textarea>-->								<!--</div>-->							<!--</td>-->						<!--</tr>-->						<tr>							<td>模板内容</td>							<td>                                        <textarea id="sms_content" name="sms_content" rows="10" cols="60"></textarea>							</td>						</tr>						<tr>							<td>状态</td>							<td>								<input type="radio" name="status" value="1" checked> 开启								<input type="radio" name="status" value="2"> 禁用							</td>						</tr>						<tr>							<td> </td>							<td >								<input type="submit" value="提交" class="btn btn-info" style="width:120px;" />							</td>						</tr>					</table>				</form>			</div>		</div>	</section><!-- /.content --></aside><!-- /.right-side --></div><!-- ./wrapper --><!-- CK Editor --><script src="static/AdminLTE/js/plugins/ckeditor/ckeditor.js" type="text/javascript"></script><script type="text/javascript">	$(function() {		// Replace the <textarea id="msg_content"> with a CKEditor		// instance, using default configuration.		CKEDITOR.replace( 'msg_content', { allowedContent: true});		CKEDITOR.replace('msg_content');		//bootstrap WYSIHTML5 - text editor		$(".textarea").wysihtml5();	});</script><style>	select{height:30px;}	.form-actions li{list-style:none;width:25px;float:left;padding-bottom:8px;padding-right:5px;}</style><script>	$('#treeview10').addClass('active');	$(".sms_template_left").addClass('active');</script></body></html>
 |