fix
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
<?php
|
||||
|
||||
defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
|
||||
class Member extends CI_Controller {
|
||||
|
||||
public function index() {
|
||||
//$this->load->view('home/home');
|
||||
// echo "START LOGIN";
|
||||
$data = array();
|
||||
|
||||
$this->renderMemberPages('view_dash', $data);
|
||||
|
||||
//$this->load->view('auth/view_head');
|
||||
//$this->load->view('auth/view_login');
|
||||
//$this->load->view('auth/view_foot');
|
||||
}
|
||||
|
||||
private function renderMemberPages($pagename, $data) {
|
||||
// $this->load->view('member/view_securehead');
|
||||
$this->load->view('member/' . $pagename, $data);
|
||||
// $this->load->view('member/view_securefoot');
|
||||
return 0;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -25,24 +25,24 @@
|
||||
<div class="card-body pt-0">
|
||||
<form action="/auth/newuser" method="POST">
|
||||
<div class="form-label-group">
|
||||
<input type="text" id="inputName" class="form-control" placeholder="Firstname" required>
|
||||
<label for="inputName">Name</label>
|
||||
<input type="text" id="firstname" class="form-control" placeholder="Firstname" required>
|
||||
<label for="firstname">Name</label>
|
||||
</div>
|
||||
<div class="form-label-group">
|
||||
<input type="text" id="inputName" class="form-control" placeholder="Lastname" required>
|
||||
<label for="inputName">Name</label>
|
||||
<input type="text" id="lastname" class="form-control" placeholder="Lastname" required>
|
||||
<label for="lastname">Name</label>
|
||||
</div>
|
||||
<div class="form-label-group">
|
||||
<input type="email" id="inputEmail" class="form-control" placeholder="Email" required>
|
||||
<label for="inputEmail">Email</label>
|
||||
<input type="email" id="email" class="form-control" placeholder="Email" required>
|
||||
<label for="email">Email</label>
|
||||
</div>
|
||||
<div class="form-label-group">
|
||||
<input type="password" id="inputPassword" class="form-control" placeholder="Password" required>
|
||||
<label for="inputPassword">Password</label>
|
||||
<input type="password" id="pass1" class="form-control" placeholder="Password" required>
|
||||
<label for="pass1">Password</label>
|
||||
</div>
|
||||
<div class="form-label-group">
|
||||
<input type="password" id="inputConfPassword" class="form-control" placeholder="Confirm Password" required>
|
||||
<label for="inputConfPassword">Confirm Password</label>
|
||||
<input type="password" id="pass2" class="form-control" placeholder="Confirm Password" required>
|
||||
<label for="pass2">Confirm Password</label>
|
||||
</div>
|
||||
<div class="form-group row">
|
||||
<div class="col-12">
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
DASH PAGE
|
||||
Reference in New Issue
Block a user