This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php defined('SYSPATH') OR die('No direct access allowed.'); | |
class Admin_Controller extends Website_Controller { | |
public function __construct() { | |
parent::__construct(); | |
$this->template = new View('admin/template'); | |
$this->template->body_class = 'admin'; | |
$this->template->title = 'Admin'; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<form action="#" method="post"> | |
<div class="section"> | |
<fieldset> | |
<table> | |
<tr> | |
<th></th> | |
<th>Name</th> | |
<th>Company</th> | |
<th>Phone</th> | |
<th>Email</th> |
NewerOlder