-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Ben Polinsky <[email protected]>
- Loading branch information
1 parent
fa4e06b
commit 37f1da3
Showing
9 changed files
with
514 additions
and
94 deletions.
There are no files selected for viewing
7 changes: 7 additions & 0 deletions
7
change/@itwin-electron-authorization-5263eced-a690-4d92-b59d-be3e53caf8af.json
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 @@ | ||
{ | ||
"type": "patch", | ||
"comment": "add styled html loopback pages", | ||
"packageName": "@itwin/electron-authorization", | ||
"email": "[email protected]", | ||
"dependentChangeType": "patch" | ||
} |
7 changes: 7 additions & 0 deletions
7
change/@itwin-node-cli-authorization-eb8d8df9-ceb5-48f8-b62b-067e591495f7.json
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 @@ | ||
{ | ||
"type": "patch", | ||
"comment": "add styled html loopback pages", | ||
"packageName": "@itwin/node-cli-authorization", | ||
"email": "[email protected]", | ||
"dependentChangeType": "patch" | ||
} |
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
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
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,110 @@ | ||
<html lang="en" dir="ltr"> | ||
|
||
<head> | ||
<title>{--pageTitle--}</title> | ||
<link rel="icon" type="image/x-icon" href="https://connect-cdn.bentley.com/cdn/en/favicon.ico" /> | ||
|
||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | ||
<meta http-equiv="x-ua-compatible" content="IE=edge" /> | ||
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<style type="text/css"> | ||
* { | ||
font-family: "Open Sans", -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; | ||
} | ||
|
||
html, | ||
body { | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
body { | ||
height: 100%; | ||
} | ||
|
||
div.page-container { | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
header { | ||
margin: 100px 0 20px; | ||
} | ||
|
||
header img { | ||
height: 52px; | ||
} | ||
|
||
main { | ||
width: 480px; | ||
border-radius: 3px; | ||
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2); | ||
padding: 32px; | ||
background-color: #FFF; | ||
text-align: center; | ||
} | ||
|
||
main h1 { | ||
margin-top: 0px; | ||
font-size: 16px; | ||
} | ||
|
||
footer { | ||
height: 90px; | ||
margin-top: auto; | ||
color: rgba(0, 0, 0, 0.4); | ||
font-size: 11px; | ||
} | ||
|
||
footer a { | ||
text-decoration: none; | ||
} | ||
|
||
footer a:hover, | ||
footer a:active { | ||
text-decoration: underline; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<div class="page-container"> | ||
<header> | ||
<img src="https://connect-cdn.bentley.com/cdn/en/logo.svg" alt="Bentley Systems logo" /> | ||
</header> | ||
|
||
<main> | ||
<h1>{--contentTitle--}</h1> | ||
<span>{--contentMessage--}</span> | ||
</main> | ||
|
||
<footer> | ||
<div class="copyright">© | ||
<script> | ||
const year = new Date(); | ||
document.write(year.getFullYear());</script> Bentley Systems, Incorporated | | ||
<a href="https://www.bentley.com/legal/terms-of-use-and-select-online-agreement/" target="_blank"> | ||
<span style="color: rgb(153, 153, 153)">Terms of Service</span></a> | ||
| | ||
<a href="https://www.bentley.com/legal/privacy-policy/" target="_blank"> | ||
<span style="color: rgb(153, 153, 153)">Privacy</span></a> | ||
| | ||
<a href="https://www.bentley.com/legal/terms-of-use-and-select-online-agreement/" target="_blank"> | ||
<span style="color: rgb(153, 153, 153)">Terms of Use</span></a> | ||
| | ||
<a href="https://www.bentley.com/legal/cookie-policy/" target="_blank"> | ||
<span style="color: rgb(153, 153, 153)">Cookies</span></a> | ||
| | ||
<a href="https://www.bentley.com/legal/overview/" target="_blank"> | ||
<span style="color: rgb(153, 153, 153)">Legal Notices</span></a> | ||
<br /> | ||
</div> | ||
</footer> | ||
</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
Oops, something went wrong.