PHP Classes

File: app/Views/Admin/Users/delete.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Task App   app/Views/Admin/Users/delete.php   Download  
File: app/Views/Admin/Users/delete.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Task App
Create and manage tasks to be done
Author: By
Last change:
Date: 24 days ago
Size: 457 bytes
 

Contents

Class file image Download
<?= $this->extend("base"); ?>

<?= $this->section('title') ?>Delete User<?= $this->endSection(); ?>

<?= $this->section('content') ?>

<h1 class="title">Delete the user</h1>

<p>Are you sure ?</p>

<?= form_open('/admin/users/delete/' . $user->id); ?>
<button class="button is-primary" type="submit">Yes</button>
<a class="button is-danger" href="<?= site_url("/admin/users/show/{$user->id}"); ?>">Cancle</a>
<?= form_close(); ?>

<?= $this->endSection() ?>