Vous êtes connecté en tant que anonymous Se Deconnecter
Browse code

Ajout des token et pasphrase des 4 hybrid authentifaction choisie: Github,Facebook,Google,Twitter Fonctionne partiellement pour des raisons obscure lié a cette authentification partagée par des grands groupe.

TODO: lire les documentation officielles provenant des 4 plate-formes tranquillement afin de ccomprendre commet doit on tester ces type d'auth quitte a créé un sous domaine particulier directement hebergé sur gittea
-->Sécuriser le serveur de dev

Emmanuel ROY authored on 11/10/2019 15:26:22
Showing 1 changed files
... ...
@@ -7,17 +7,17 @@
7 7
     @section('top-css')
8 8
     @endsection
9 9
 
10
-    @section('top-javascript')
11
-    @endsection
12
-
13 10
 </head>
14 11
 
15 12
 <body>
16 13
 
14
+@section('top-javascript')
15
+@show
16
+
17 17
 @yield('body')
18 18
 
19 19
 @section('bottom-javascript')
20
-@endsection
20
+@show
21 21
 
22 22
 </body>
23 23
 
Browse code

Ajout intégration de l'hybridAuthentification encore en état de code brut Pas de tests

TODO: aller chercher les token et les id des authentifcation pour google, github, facebook, twitter ... Reste a tester et à décider pour les autres types d'authentification.

Emmanuel ROY authored on 26/09/2019 04:27:05
Showing 1 changed files
... ...
@@ -1,9 +1,24 @@
1 1
 <html>
2
+
2 3
 <head>
3 4
     <title>{{$page_title}}</title>
4
-    <meta name="description" lang="fr" content="{{$description}}" />
5
+    <meta name="description" lang="fr" content="{{$description}}"/>
6
+
7
+    @section('top-css')
8
+    @endsection
9
+
10
+    @section('top-javascript')
11
+    @endsection
12
+
5 13
 </head>
14
+
6 15
 <body>
16
+
7 17
 @yield('body')
18
+
19
+@section('bottom-javascript')
20
+@endsection
21
+
8 22
 </body>
23
+
9 24
 </html>
10 25
\ No newline at end of file
Browse code

Application nettoyé, Ajout de la lib composer hybridauth/hybridauth TODO: integrer hybrid auth sur une page simple d'authentification

Emmanuel ROY authored on 09/09/2019 22:37:17
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,9 @@
1
+<html>
2
+<head>
3
+    <title>{{$page_title}}</title>
4
+    <meta name="description" lang="fr" content="{{$description}}" />
5
+</head>
6
+<body>
7
+@yield('body')
8
+</body>
9
+</html>
0 10
\ No newline at end of file