Cleaned up some views and controllers; basic auto + password change has been fixed.

This commit is contained in:
James Cole
2014-07-02 21:58:40 +02:00
parent 43204a3a95
commit 3a7c543afb
5 changed files with 51 additions and 39 deletions

View File

@@ -10,16 +10,6 @@ class HomeController extends BaseController {
public function index()
{
$count = $this->accounts->count();
if($count == 0) {
return Redirect::route('start');
}
return View::make('index');
}
public function start() {
return View::make('start');
}
}