-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5ae7ffa
commit a3b52ef
Showing
13 changed files
with
553 additions
and
108 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ | |
})(window,document,'script','dataLayer','GTM-NGN82WCD');</script> | ||
{{end}} | ||
<!-- End Google Tag Manager --> | ||
<!-- stoplight.io --> | ||
<!-- stoplight.io --> | ||
<script> | ||
function loadFallbackScript(src) { | ||
let script = document.createElement('script'); | ||
|
@@ -35,6 +35,10 @@ | |
<script src="https://unpkg.com/@stoplight/elements/web-components.min.js" onerror="loadFallbackScript('/assets/vendor/stoplight/elements/web-components.min.js')" async></script> | ||
<link rel="preload" href="https://unpkg.com/@stoplight/elements/styles.min.css" as="style" onload="this.onload=null;this.rel='stylesheet'" onerror="this.onerror=null;this.href='/assets/vendor/stoplight/elements/styles.min.css'"> | ||
<script src="https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js"> </script> | ||
|
||
<script src="https://unpkg.com/@asyncapi/react-component@latest/browser/standalone/index.js"></script> | ||
<link rel="stylesheet" href="https://unpkg.com/@asyncapi/react-component@latest/styles/default.min.css"> | ||
|
||
<!-- Load style assets --> | ||
<link href="/assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css"> | ||
|
@@ -53,7 +57,7 @@ | |
|
||
<body {{if $isAuth}}style="margin-top:0;padding:0;"{{end}}> | ||
<!-- Render top navigation menu --> | ||
|
||
{{if not $isAuth}} | ||
{{ render "top_nav" . }} | ||
{{end}} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
|
||
<title>{{.product.Name}}: {{.api.Name}} Documentation</title> | ||
|
||
<link href="/assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet"> | ||
<link href="/assets/stylesheets/fonts.css" rel="stylesheet"> | ||
<link href="/assets/stylesheets/main.css" rel="stylesheet"> | ||
|
||
<!-- stoplight.io --> | ||
<script src="https://unpkg.com/@asyncapi/react-component@latest/browser/standalone/index.js"></script> | ||
<link rel="stylesheet" href="https://unpkg.com/@asyncapi/react-component@latest/styles/default.min.css"> | ||
|
||
<!-- <link rel="stylesheet" href=""> --> | ||
|
||
</head> | ||
<body> | ||
|
||
{{ render "top_nav" . }} | ||
<!-- Page Content --> | ||
{{ yield }} | ||
{{ render "footer" . }} | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Credential Expiring Soon</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
line-height: 1.6; | ||
color: #333; | ||
max-width: 600px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
} | ||
.container { | ||
background-color: #f9f9f9; | ||
border-radius: 5px; | ||
padding: 20px; | ||
} | ||
.header { | ||
font-size: 24px; | ||
color: #2c3e50; | ||
margin-bottom: 20px; | ||
} | ||
.content { | ||
margin-bottom: 20px; | ||
} | ||
.footer { | ||
font-size: 14px; | ||
color: #7f8c8d; | ||
margin-top: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="header"> | ||
Credential Expired | ||
</div> | ||
<div class="content"> | ||
<p>Hi <strong>{{.user.First}}</strong>,</p> | ||
<p>Your credential <strong>{{.credential.CredentialHash}}</strong> is expired.</p> | ||
</div> | ||
<div class="footer"> | ||
<p>Regards,</p> | ||
<p>The Team</p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Hi {{.user.First}}, | ||
|
||
Your credential {{.credential.CredentialHash}} is expired. | ||
|
||
Regards, | ||
|
||
The Team |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Hi {{.user.First}}, | ||
|
||
Your credential {{.credential.CredentialHash}} is expired. | ||
|
||
Regards, | ||
|
||
The Team |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Credential Expiring Soon</title> | ||
<style> | ||
body { | ||
font-family: Arial, sans-serif; | ||
line-height: 1.6; | ||
color: #333; | ||
max-width: 600px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
} | ||
.container { | ||
background-color: #f9f9f9; | ||
border-radius: 5px; | ||
padding: 20px; | ||
} | ||
.header { | ||
font-size: 24px; | ||
color: #2c3e50; | ||
margin-bottom: 20px; | ||
} | ||
.content { | ||
margin-bottom: 20px; | ||
} | ||
.footer { | ||
font-size: 14px; | ||
color: #7f8c8d; | ||
margin-top: 20px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<div class="header"> | ||
Credential Expiring Soon | ||
</div> | ||
<div class="content"> | ||
<p>Hi <strong>{{.user.First}}</strong>,</p> | ||
<p>Your credential <strong>{{.credential.CredentialHash}}</strong> is expiring soon. Please log in to the developer portal to renew it.</p> | ||
</div> | ||
<div class="footer"> | ||
<p>Regards,</p> | ||
<p>The Team</p> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Hi {{.user.First}}, | ||
|
||
Your credential {{.credential.CredentialHash}} is expiring soon, please log in to the developer portal to renew it. | ||
|
||
Regards, | ||
|
||
The Team |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Hi {{.user.First}}, | ||
|
||
Your credential {{.credential.CredentialHash}} is expiring soon, please log in to the developer portal to renew it. | ||
|
||
Regards, | ||
|
||
The Team |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.