38 lines
1.4 KiB
Text
38 lines
1.4 KiB
Text
!!!
|
|
%html
|
|
%head
|
|
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
|
|
%title TPS - Téléprocédures simplifiées
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
|
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
|
= csrf_meta_tags
|
|
%body
|
|
%div
|
|
%div.navbar
|
|
= image_tag('marianne_small.png', class: 'logo')
|
|
%a{href: '/', class:'btn btn-lg'}
|
|
='TPS'
|
|
|
|
-if gestionnaire_signed_in?
|
|
%div{style: 'decorate:none; box-shadow:none; float:right; margin-top:8px'}
|
|
= current_gestionnaire.email
|
|
= link_to "Déconnexion", '/gestionnaires/sign_out', method: :delete, :class => 'btn btn-md'
|
|
- elsif user_signed_in?
|
|
%div.user{style: 'decorate:none; box-shadow:none; float:right; margin-top:8px'}
|
|
-if current_user.loged_in_with_france_connect
|
|
%img.logo_fc_small{src: '/assets/logo_FC_02_small.png'}
|
|
-else
|
|
%i.fa.fa-user
|
|
= current_user.email
|
|
= link_to "Déconnexion", '/users/sign_out', method: :delete, :class => 'btn btn-md'
|
|
|
|
#flash_message.center
|
|
- if flash.notice
|
|
.alert.alert-success
|
|
= flash.notice
|
|
- if flash.alert
|
|
.alert.alert-danger
|
|
= flash.alert
|
|
|
|
%div{:style => 'margin-left:10%; margin-right:10%;'}
|
|
= yield
|