PHP Classes

File: templates/not-found.php

Recommend this page to a friend!
  Classes of Pierre-Henry Soria   Link2Payment   templates/not-found.php   Download  
File: templates/not-found.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Link2Payment
Application to generate links for people to pay
Author: By
Last change:
Date: 1 year ago
Size: 661 bytes
 

Contents

Class file image Download
<?php namespace PH7App; ?>

<section class="center">
    <div class="row">
        <div class="col-md-4 col-md-offset-4">
            <div class="panel">
                <h2>Page Not Found!</h2>
                <p><strong>Sorry, we weren't able to find the page you requested.</strong></p>
                <p><strong><em>Suggestions:</em></strong></p>
                <ul>
                    <li><a href="<?= site_url(); ?>">Main Page</a></li>
                    <li><a href="javascript:void(0);" onclick="history.go(-1);">Go back to the previous page</a>
                    </li>
                </ul>
            </div>
        </div>
    </div>
</section>