github.com/greenpau/go-authcrunch@v1.0.50/assets/portal/templates/basic/apps_mobile_access.template (about)

     1  <!DOCTYPE html>
     2  <html lang="en" class="h-full bg-blue-100">
     3    <head>
     4      <title>{{ .MetaTitle }} - {{ .PageTitle }}</title>
     5      <!-- Required meta tags -->
     6      <meta charset="utf-8" />
     7      <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
     8      <meta name="description" content="{{ .MetaDescription }}" />
     9      <meta name="author" content="{{ .MetaAuthor }}" />
    10      <link rel="shortcut icon" href="{{ pathjoin .ActionEndpoint "/assets/images/favicon.png" }}" type="image/png" />
    11      <link rel="icon" href="{{ pathjoin .ActionEndpoint "/assets/images/favicon.png" }}" type="image/png" />
    12      <link rel="stylesheet" href="{{ pathjoin .ActionEndpoint "/assets/google-webfonts/roboto.css" }}" />
    13      <link rel="stylesheet" href="{{ pathjoin .ActionEndpoint "/assets/line-awesome/line-awesome.css" }}" />
    14      <link rel="stylesheet" href="{{ pathjoin .ActionEndpoint "/assets/css/apps_mobile_access.css" }}" />
    15      {{ if eq .Data.ui_options.custom_css_required "yes" }}
    16        <link rel="stylesheet" href="{{ pathjoin .ActionEndpoint "/assets/css/custom.css" }}" />
    17      {{ end }}
    18    </head>
    19  
    20    <body class="h-full">
    21      <div class="app-page">
    22        <div class="app-content">
    23          <div class="app-container">
    24            <div class="logo-col-box">
    25              {{ if .LogoURL }}
    26                <div>
    27                  <img class="logo-img" src="{{ .LogoURL }}" alt="{{ .LogoDescription }}" />
    28                </div>
    29              {{ end }}
    30              <div>
    31                <h2 class="logo-col-txt">{{ .PageTitle }}</h2>
    32              </div>
    33            </div>
    34            <div>
    35              <p class="app-inp-lbl">Scan the below QR code and follow the link to perform one-time passwordless login.</p>
    36            </div>
    37  
    38            <div class="flex flex-wrap pt-6 justify-center gap-4">
    39              <div id="forgot_username_link">
    40                <a class="text-primary-600" href="{{ pathjoin .ActionEndpoint "/portal" }}">
    41                  <i class="las la-layer-group"></i>
    42                  <span class="text-lg">Portal</span>
    43                </a>
    44              </div>
    45              <div id="contact_support_link">
    46                <a class="text-primary-600" href="{{ pathjoin .ActionEndpoint "/logout" }}">
    47                  <i class="las la-times-circle"></i>
    48                  <span class="text-lg">Sign Out</span>
    49                </a>
    50              </div>
    51            </div>
    52          </div>
    53        </div>
    54      </div>
    55      <!-- JavaScript -->
    56      <script src="{{ pathjoin .ActionEndpoint "/assets/js/apps_mobile_access.js" }}"></script>
    57      {{ if eq .Data.ui_options.custom_js_required "yes" }}
    58        <script src="{{ pathjoin .ActionEndpoint "/assets/js/custom.js" }}"></script>
    59      {{ end }}
    60    </body>
    61  </html>