Added user/delete view
这个提交包含在:
父节点
935da62d3e
当前提交
8b63ec7874
共有 1 个文件被更改,包括 16 次插入 和 0 次删除
|
|
@ -0,0 +1,16 @@
|
||||||
|
<h2>Edit user</h2>
|
||||||
|
<div class="wrap_content user">
|
||||||
|
<?php echo validation_errors(); ?>
|
||||||
|
|
||||||
|
<form method="post" action="<?php echo site_url('user/delete')."/".$this->uri->segment(3); ?>" name="users">
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td style="padding: 10px;">Are you sure you want to delete <?php echo $user_name; ?>?</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<input type="hidden" name="id" value="<?php echo $this->uri->segment(3); ?>" />
|
||||||
|
<div><input type="submit" value="Yes, delete this user" /> <a href="<?php echo site_url('user'); ?>">No, do not delete this user</a></div>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
|
||||||
|
</div>
|
||||||
正在加载…
在新工单中引用