29 lines
861 B
HTML
29 lines
861 B
HTML
<include file="Public/header" title="添加用户" />
|
|
<div id="page-wrapper">
|
|
<form action="{:U('manager/add')}" method="post">
|
|
<div class="form-group">
|
|
<label>用户名</label>
|
|
<input class="form-control" type="text" name="username" placeholder="后台用户名">
|
|
</div>
|
|
<div class="form-group">
|
|
<label>邮箱</label>
|
|
<input class="form-control" type="text" name="email" placeholder="邮箱">
|
|
</div>
|
|
<div class="form-group">
|
|
<label>密码</label>
|
|
<input class="form-control" type="password" name="password" placeholder="密码">
|
|
</div>
|
|
<div class="form-group">
|
|
<label>确认密码</label>
|
|
<input class="form-control" type="password" name="repassword" placeholder="重复密码">
|
|
</div>
|
|
<div class="form-group">
|
|
<button class="btn btn-success" type="submit" >添加</button>
|
|
</div>
|
|
|
|
|
|
</form>
|
|
</div>
|
|
|
|
<include file="Public/footer" />
|