PHP Classes

File: app/Views/Profileimage/delete.php

Recommend this page to a friend!
  Classes of Faris AL-Otabi   Task App   app/Views/Profileimage/delete.php   Download  
File: app/Views/Profileimage/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: 1 month ago
Size: 431 bytes
 

Contents

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

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

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

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

<p>Are you sure ?</p>

<?= form_open('/profileimage/delete'); ?>
<button class="button is-primary" type="submit">Yes</button>
<a class="button is-danger" href="<?= site_url("/profile/show"); ?>">Cancle</a>
<?= form_close(); ?>

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