Rogier Neeleman
9 years ago
3 changed files with 48 additions and 1 deletions
@ -0,0 +1,26 @@
@@ -0,0 +1,26 @@
|
||||
<?php |
||||
/** |
||||
* Login Class |
||||
*/ |
||||
class Login extends CI_Controller |
||||
{ |
||||
|
||||
public function __construct() |
||||
{ |
||||
parent::__construct(); |
||||
} |
||||
|
||||
public function index() |
||||
{ |
||||
// Header |
||||
$this->load->view('header'); |
||||
|
||||
// Content |
||||
$this->load->view('login'); |
||||
|
||||
// Footer |
||||
$this->load->view('footer'); |
||||
} |
||||
} |
||||
|
||||
?> |
@ -0,0 +1,21 @@
@@ -0,0 +1,21 @@
|
||||
<div class='grid flex'> |
||||
<div class='col_12 center'> |
||||
<h1>Score Informatie Systeem</h1> |
||||
</div> |
||||
</div> |
||||
|
||||
<div class='grid flex'> |
||||
<div class='col_3'> |
||||
</div> |
||||
<div class='col_4 right'> |
||||
<?php echo form_open(base_url('login/')); ?> |
||||
<label for='text2'>Username:</label> |
||||
<?php echo form_input('username'); ?><br>
|
||||
<label for='text2'>Password:</label> |
||||
<?php echo form_input('password'); ?><br>
|
||||
<?php echo form_submit('login', 'Login'); ?> |
||||
</div> |
||||
<div class='col_5'> |
||||
</div> |
||||
|
||||
</div> <!-- End Grid --> |
Loading…
Reference in new issue