fix: remove gen files

Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
feat-otp-verification
James Elliott 2023-04-15 01:27:03 +10:00
parent f549afd480
commit d97c0eb0ea
No known key found for this signature in database
GPG Key ID: 0F1C4A096E857E49
3 changed files with 11 additions and 3940 deletions

View File

@ -1,60 +0,0 @@
<!-- HTML for static distribution bundle build -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Swagger UI</title>
<link rel="stylesheet" type="text/css" href="{{ .Base }}/api/swagger-ui.css" />
<link rel="icon" type="image/png" href="{{ .Base }}/api/favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="{{ .Base }}/api/favicon-16x16.png" sizes="16x16" />
<style nonce="{{ .CSPNonce }}">
html
{
box-sizing: border-box;
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
}
*,
*:before,
*:after
{
box-sizing: inherit;
}
body
{
margin:0;
background: #fafafa;
}
</style>
</head>
<body>
<div id="swagger-ui"></div>
<script src="{{ .Base }}/api/swagger-ui-bundle.js" charset="UTF-8"> </script>
<script src="{{ .Base }}/api/swagger-ui-standalone-preset.js" charset="UTF-8"> </script>
<script nonce="{{ .CSPNonce }}">
window.onload = function() {
// Begin Swagger UI call region
const ui = SwaggerUIBundle({
url: "{{ .Base }}/api/openapi.yml",
dom_id: '#swagger-ui',
deepLinking: true,
presets: [
SwaggerUIBundle.presets.apis,
SwaggerUIStandalonePreset
],
plugins: [
SwaggerUIBundle.plugins.DownloadUrl
],
layout: "StandaloneLayout"
});
// End Swagger UI call region
window.ui = ui;
};
</script>
</body>
</html>

File diff suppressed because it is too large Load Diff

View File

@ -1,32 +1,11 @@
<!DOCTYPE html> {
<html lang="en"> "Base":"{{ .Base }}",
<head> "DuoSelfEnrollment":"{{ .DuoSelfEnrollment }}",
<base href="{{ .BaseURL }}" /> "LogoOverride":"{{ .LogoOverride }}",
<meta property="csp-nonce" content="{{ .CSPNonce }}" /> "RememberMe":"{{ .RememberMe }}",
<meta charset="utf-8" /> "ResetPassword":"{{ .ResetPassword }}",
<meta name="viewport" content="width=device-width, initial-scale=1" /> "ResetPasswordCustomURL":"{{ .ResetPasswordCustomURL }}",
<meta name="theme-color" content="#000000" /> "PrivacyPolicyURL":"{{ .PrivacyPolicyURL }}",
<meta name="description" content="Authelia login portal for your apps" /> "PrivacyPolicyAccept":"{{ .PrivacyPolicyAccept }}",
<link rel="manifest" href="./manifest.json" /> "Theme":"{{ .Theme }}"
<link rel="icon" href="./favicon.ico" /> }
<title>Login - Authelia</title>
<script type="module" crossorigin src="./static/js/index.12a51e2c.js"></script>
<link rel="stylesheet" href="./static/css/index.9502ad8b.css">
</head>
<body
data-basepath="{{ .Base }}"
data-duoselfenrollment="{{ .DuoSelfEnrollment }}"
data-logooverride="{{ .LogoOverride }}"
data-privacypolicyaccept="{{ .PrivacyPolicyAccept }}"
data-privacypolicyurl="{{ .PrivacyPolicyURL }}"
data-rememberme="{{ .RememberMe }}"
data-resetpassword="{{ .ResetPassword }}"
data-resetpasswordcustomurl="{{ .ResetPasswordCustomURL }}"
data-theme="{{ .Theme }}"
>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
</body>
</html>