You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.5 KiB
68 lines
2.5 KiB
<!DOCTYPE html><html><head><title>管理员添加_后台管理</title>@include('admin.common.header')
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<!-- 左边开始 --><div class="col-sm-3 col-md-2 sidebar">@include('admin.common.leftmenu')</div><!-- 左边结束 -->
|
|
|
|
<!-- 右边开始 --><div class="col-sm-9 col-md-10 rightbox"><div id="mainbox">
|
|
<h5 class="sub-header"><a href="/fladmin/user">管理员列表</a> > 管理员添加</h5>
|
|
|
|
<form id="addarc" method="post" action="/fladmin/user/doadd" role="form" enctype="multipart/form-data" class="table-responsive">{{ csrf_field() }}
|
|
<table class="table table-striped table-bordered">
|
|
<tbody>
|
|
<tr>
|
|
<td align="right">用户名:</td>
|
|
<td><input name="username" type="text" id="username" value="" class="required" style="width:30%" placeholder="在此输入用户名"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">密码:</td>
|
|
<td><input name="pwd" type="password" id="pwd" value="" class="required" style="width:60%"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">邮箱:</td>
|
|
<td><input name="email" type="text" id="email" value="" style="width:60%"></td>
|
|
</tr>
|
|
<tr>
|
|
<td align="right">角色:</td>
|
|
<td>
|
|
<select name="role_id" id="role_id">
|
|
<?php if($rolelist){foreach($rolelist as $row){ ?>
|
|
<option value="<?php echo $row["id"]; ?>"><?php echo $row["name"]; ?></option>
|
|
<?php }} ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2"><button type="submit" class="btn btn-success" value="Submit">保存(Submit)</button> <button type="reset" class="btn btn-default" value="Reset">重置(Reset)</button><input type="hidden"></input></td>
|
|
</tr>
|
|
</tbody></table></form><!-- 表单结束 -->
|
|
</div></div><!-- 右边结束 --></div></div>
|
|
|
|
<script>
|
|
$(function(){
|
|
$(".required").blur(function(){
|
|
var $parent = $(this).parent();
|
|
$parent.find(".formtips").remove();
|
|
if(this.value=="")
|
|
{
|
|
$parent.append(' <small class="formtips onError"><font color="red">不能为空!</font></small>');
|
|
}
|
|
else
|
|
{
|
|
$parent.append(' <small class="formtips onSuccess"><font color="green">OK</font></small>');
|
|
}
|
|
});
|
|
|
|
//重置
|
|
$('#addarc input[type="reset"]').click(function(){
|
|
$(".formtips").remove();
|
|
});
|
|
|
|
$("#addarc").submit(function(){
|
|
$(".required").trigger('blur');
|
|
var numError = $('#addarc .onError').length;
|
|
|
|
if(numError){return false;}
|
|
});
|
|
});
|
|
</script>
|
|
</body></html>
|