Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct footers to correct repository url #43

Merged
merged 2 commits into from
Sep 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions authn/openid.index.js
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ function unauthorized(error, error_description, error_uri, callback) {
</head>
<body>
<div class="cover"><h1>%error% <small>Error 401</small></h1><p class="lead">%error_description%</p><p>%error_uri%</p></div>
<footer><p><a href="https://github.com/widen/cloudfront-auth">cloudfront-auth</a></p></footer>
<footer><p><a href="https://github.com/iress/cloudfront-auth">cloudfront-auth</a></p></footer>
</body>
</html>`;

Expand Down Expand Up @@ -395,7 +395,7 @@ function internalServerError(callback) {
</head>
<body>
<div class="cover"><h1>Internal Server Error <small>Error 500</small></h1></div>
<footer><p><a href="https://github.com/widen/cloudfront-auth">cloudfront-auth</a></p></footer>
<footer><p><a href="https://github.com/iress/cloudfront-auth">cloudfront-auth</a></p></footer>
</body>
</html>`;

Expand Down
4 changes: 2 additions & 2 deletions authn/pkce.index.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,7 @@ function unauthorized(error, error_description, error_uri, callback) {
</head>
<body>
<div class="cover"><h1>%error% <small>Error 401</small></h1><p class="lead">%error_description%</p><p>%error_uri%</p></div>
<footer><p><a href="https://github.com/widen/cloudfront-auth">cloudfront-auth</a></p></footer>
<footer><p><a href="https://github.com/iress/cloudfront-auth">cloudfront-auth</a></p></footer>
</body>
</html>`;

Expand Down Expand Up @@ -419,7 +419,7 @@ function internalServerError(callback) {
</head>
<body>
<div class="cover"><h1>Internal Server Error <small>Error 500</small></h1></div>
<footer><p><a href="https://github.com/widen/cloudfront-auth">cloudfront-auth</a></p></footer>
<footer><p><a href="https://github.com/iress/cloudfront-auth">cloudfront-auth</a></p></footer>
</body>
</html>`;

Expand Down
Loading