Vous êtes connecté en tant que anonymous Se Deconnecter
application/include/vues/view/compte.blade.php
8640b6e0
 @extends('body')
 
 @section('sidebar')
     @parent
 
     <p>This is appended to the master sidebar.</p>
 @endsection
 
 @section('content')
 
     <h1>Compte utilisateur</h1>
 
     @foreach ($extractedData as $key => $value)
         {{ $key }} :: {{ $value }}
     @endforeach
 
     @if ($adapters)
         <h1>You are logged in:</h1>
         <ul>
             @foreach ($adapters as $name => $adapter)
                 <li>
                     <strong>{{$adapter->getUserProfile()->displayName }}</strong> from
                     <i>{{ $name }}</i>
ee2d7d73
                     <span>(<a href="{{ \MVC\Classe\Url::link_rewrite( true, 'authentification-callback-example', ['logout'=>$name ]) }}"
                               ; ?>">Log Out</a>)</span>
8640b6e0
                 </li>
             @endforeach
         </ul>
     @endif
 
 
 @endsection