Commit 58b9ce3d authored by Kevin Yumang's avatar Kevin Yumang

SERV-2286 - authentication element WIP

parent 7e3cb6dc
...@@ -32,8 +32,8 @@ ...@@ -32,8 +32,8 @@
class Config class Config
{ {
public $methodAllocation = [ public $methodAllocation = [
'Limitless::AuthentificationStart' => 'authentificationStart', 'Limitless::AuthenticationStart' => 'authenticationStart',
'Limitless::AuthentificationStop' => 'authentificationStop', 'Limitless::AuthenticationStop' => 'authenticationStop',
]; ];
public $assetAllocation; public $assetAllocation;
...@@ -41,7 +41,7 @@ ...@@ -41,7 +41,7 @@
public function __construct() public function __construct()
{ {
$this->assetAllocation = [ $this->assetAllocation = [
'Limitless::AuthentificationStart' => [ 'Limitless::AuthenticationStart' => [
'Attachments/authentication.init.js' 'Attachments/authentication.init.js'
] ]
]; ];
...@@ -50,10 +50,10 @@ ...@@ -50,10 +50,10 @@
/* /*
|-------------------------------------------------------------------------------------------- |--------------------------------------------------------------------------------------------
| Method "authentificationStart" | Method "authenticationStart"
|-------------------------------------------------------------------------------------------- |--------------------------------------------------------------------------------------------
*/ */
public function authentificationStart($parameters) public function authenticationStart($parameters)
{ {
return View('Limitless::Authentication.Start'); return View('Limitless::Authentication.Start');
...@@ -62,10 +62,10 @@ ...@@ -62,10 +62,10 @@
/* /*
|-------------------------------------------------------------------------------------------- |--------------------------------------------------------------------------------------------
| Method "formStop" | Method "authenticationStop"
|-------------------------------------------------------------------------------------------- |--------------------------------------------------------------------------------------------
*/ */
public function formStop() public function authenticationStop()
{ {
return View('Limitless::Authentication.Stop'); return View('Limitless::Authentication.Stop');
......
...@@ -3,10 +3,6 @@ ...@@ -3,10 +3,6 @@
@section('Limitless::Content') @section('Limitless::Content')
@Limitless::AuthenticationStart
{{-- Description --}}
@Limitless::CardStart(['title' => "Description", 'icon' => 'icon-info22'])
@Limitless::AuthenticationStart
@Limitless::CardStop
@stop @stop
...@@ -36,12 +36,14 @@ ...@@ -36,12 +36,14 @@
@Limitless::SideNavMenuStart(['title' => 'Elements', 'icon' => 'icon-grid5']) @Limitless::SideNavMenuStart(['title' => 'Elements', 'icon' => 'icon-grid5'])
@Limitless::SideNavMenuItem(['url' => '?page=Element.Example', 'target' => '_self', 'icon' => 'icon-exclamation', 'title' => 'Example']) @Limitless::SideNavMenuItem(['url' => '?page=Element.Example', 'target' => '_self', 'icon' => 'icon-exclamation', 'title' => 'Example'])
@Limitless::SideNavMenuItem(['url' => '?page=Element.Alert', 'target' => '_self', 'icon' => 'icon-bubble-notification', 'title' => 'Alert']) @Limitless::SideNavMenuItem(['url' => '?page=Element.Alert', 'target' => '_self', 'icon' => 'icon-bubble-notification', 'title' => 'Alert'])
@Limitless::SideNavMenuItem(['url' => '?page=Authentication', 'target' => '_self', 'icon' => 'icon-lock2', 'title' => 'Authentication'])
@Limitless::SideNavMenuItem(['url' => '?page=Card', 'target' => '_self', 'icon' => 'icon-newspaper', 'title' => 'Card']) @Limitless::SideNavMenuItem(['url' => '?page=Card', 'target' => '_self', 'icon' => 'icon-newspaper', 'title' => 'Card'])
@Limitless::SideNavMenuItem(['url' => '?page=Codemirror', 'target' => '_self', 'icon' => 'icon-circle-code', 'title' => 'Code Mirror']) @Limitless::SideNavMenuItem(['url' => '?page=Codemirror', 'target' => '_self', 'icon' => 'icon-circle-code', 'title' => 'Code Mirror'])
@Limitless::SideNavMenuItem(['url' => '?page=Element.Copyright', 'target' => '_self', 'icon' => 'icon-info22', 'title' => 'Copyright']) @Limitless::SideNavMenuItem(['url' => '?page=Element.Copyright', 'target' => '_self', 'icon' => 'icon-info22', 'title' => 'Copyright'])
@Limitless::SideNavMenuItem(['url' => '?page=Dashboard', 'target' => '_self', 'icon' => 'icon-stats-bars', 'title' => 'Dashboard']) @Limitless::SideNavMenuItem(['url' => '?page=Dashboard', 'target' => '_self', 'icon' => 'icon-stats-bars', 'title' => 'Dashboard'])
@Limitless::SideNavMenuItem(['url' => '?page=Element.Divider', 'target' => '_self', 'icon' => 'icon-minus2', 'title' => 'Divider']) @Limitless::SideNavMenuItem(['url' => '?page=Element.Divider', 'target' => '_self', 'icon' => 'icon-minus2', 'title' => 'Divider'])
@Limitless::SideNavMenuItem(['url' => '?page=Dropzone', 'target' => '_self', 'icon' => 'icon-drawer-in', 'title' => 'Dropzone']) @Limitless::SideNavMenuItem(['url' => '?page=Dropzone', 'target' => '_self', 'icon' => 'icon-drawer-in', 'title' => 'Dropzone'])
@Limitless::SideNavMenuItem(['url' => '?page=Form', 'target' => '_self', 'icon' => 'icon-profile', 'title' => 'Form'])
@Limitless::SideNavMenuItem(['url' => '?page=Element.Legend', 'target' => '_self', 'icon' => 'icon-vcard', 'title' => 'Legend']) @Limitless::SideNavMenuItem(['url' => '?page=Element.Legend', 'target' => '_self', 'icon' => 'icon-vcard', 'title' => 'Legend'])
@Limitless::SideNavMenuItem(['url' => '?page=Listgroup', 'target' => '_self', 'icon' => 'icon-list-unordered', 'title' => 'List Group']) @Limitless::SideNavMenuItem(['url' => '?page=Listgroup', 'target' => '_self', 'icon' => 'icon-list-unordered', 'title' => 'List Group'])
@Limitless::SideNavMenuItem(['url' => '?page=Element.LoremIpsum', 'target' => '_self', 'icon' => 'icon-bubble-lines3', 'title' => 'Lorem Ipsum']) @Limitless::SideNavMenuItem(['url' => '?page=Element.LoremIpsum', 'target' => '_self', 'icon' => 'icon-bubble-lines3', 'title' => 'Lorem Ipsum'])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment