Page 1 of 1

MD - Subido ejemplo de Login y autenticacion en módulos

PostPosted: Wed Aug 18, 2021 7:42 am
by Carles
Hola,

Subido ejemplo de login y toda su lógica para autenticar y usar módulos de la aplicación. Todo en bootstrap de forma sencilla para dar un look a nuestra aplicación

http://54.37.60.38/tpl/basic_login/

C.

Re: MD - Subido ejemplo de Login y autenticacion en módulos

PostPosted: Wed Aug 18, 2021 10:18 am
by Enrico Maria Giordano
The main menu doesn't work correctly using Edge Chromium. Using IE it doesn't even reach the main menu page and goes back to the login page. :-(

EMG

Re: MD - Subido ejemplo de Login y autenticacion en módulos

PostPosted: Wed Aug 18, 2021 2:44 pm
by Carles
Hi Enrico,

There really is no menu, it just tries to show 3 links with the <a></a> tags

Code: Select all  Expand view
    <main class="page-content p-5">
   
        <a href="{{ Route( 'app.test1' ) }}">Test 1</a>
        <br>
        <a href="{{ Route( 'app.test2' ) }}">Test 2</a>
        <br>
        <a href="{{ Route( 'app.test3' ) }}">Test 3</a>
   
    </main>


It works correctly on edge, firefox, chrome and safari. I see that using IE something must happen to the cookie. I'll check ... :-)

The purpose of the example is to create an authentication and to be able to access the modules.

If you want to try a menu example, you can try the example http://54.37.60.38/tpl/basic_menu I think it works correctly in all browsers.

And if you want to take a look at other example projects you can see in this link http://54.37.60.38/tpl

Thank you for your comments

Regards.
C.

Re: MD - Subido ejemplo de Login y autenticacion en módulos

PostPosted: Wed Aug 18, 2021 2:59 pm
by Enrico Maria Giordano
Carles wrote:Hi Enrico,

There really is no menu, it just tries to show 3 links with the <a></a> tags


Ah, it's ok then. :-)

EMG