22 lines
815 B
HTML
22 lines
815 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<base href="{{.BaseURL}}">
|
||
|
<meta property="csp-nonce" content="{{.CSPNonce}}" />
|
||
|
<meta charset="utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||
|
<meta name="theme-color" content="#000000" />
|
||
|
<meta name="description" content="Authelia login portal for your apps" />
|
||
|
<link rel="manifest" href="/manifest.json" />
|
||
|
<link rel="icon" href="/favicon.ico" />
|
||
|
<title>Login - Authelia</title>
|
||
|
</head>
|
||
|
|
||
|
<body data-basepath="<%- VITE_PUBLIC_URL %>" data-rememberme="<%- VITE_REMEMBER_ME %>" data-resetpassword="<%- VITE_RESET_PASSWORD %>" data-theme="<%- VITE_THEME %>">
|
||
|
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||
|
<div id="root"></div>
|
||
|
<script type="module" src="/src/index.tsx"></script>
|
||
|
</body>
|
||
|
|
||
|
</html>
|