Skip to content
Snippets Groups Projects
header.pug 1.16 KiB
Newer Older
sib-widget(name='account-user-avatar')
  template
    img(name="${name}",src="\${value || '/images/alien.jpg'}",style="max-width:100%; max-height: 100%;")

sib-widget(name='account-user-name')
  template
    p Hello ${value} :-)

.container
    .d-flex.justify-content-between
        a(href='/') Mentorship program
        include menu.pug

        sib-display#user-controls__profile(
            data-fields='first_name, account.picture',
            widget-first_name='account-user-name',
            widget-account.picture='account-user-avatar',
            bind-user
        )

        button(role='log in' onclick="document.querySelector('sib-auth').login();") Login

        #resources(hidden).no-sidebar
          include home.pug

        #resource-create(hidden).no-sidebar
          sib-link(class="backlink", next="resources") Back
          include resource/create.pug



sib-auth
  sib-auth-provider(
    class="sib-auth-provider"
    data-authority=`${sdn}`
    data-client_id=`${client_id}`,
    data-id="coopstarter"
    data-response_type='id_token token',
    data-scope='openid profile email',
    data-automaticSilentRenew='true',
    data-loadUserInfo='true'
  )