-
Notifications
You must be signed in to change notification settings - Fork 1
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
812f56f
commit 00fdce1
Showing
5 changed files
with
100 additions
and
14 deletions.
There are no files selected for viewing
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,38 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="mobile-web-app-capable" content="yes"> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<meta name="application-name" content="inst.bid"> | ||
<meta name="apple-mobile-web-app-title" content="inst.bid"> | ||
<meta name="theme-color" content="#287A9F"> | ||
<meta name="msapplication-navbutton-color" content="287A9F"> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> | ||
<meta name="msapplication-starturl" content="/"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content="Instructure product compliance information" /> | ||
|
||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> | ||
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> | ||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> | ||
|
||
<title>Redirecting...</title> | ||
<script> | ||
const prefix = '/#' | ||
const protocol = window.location.protocol + '//' | ||
const host = window.location.hostname | ||
const path = window.location.pathname | ||
const redirectURL = protocol + host + prefix + path | ||
window.location.href = redirectURL | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<noscript>You need to enable JavaScript to run this app. To request compliance information directly ask your | ||
Customer Success Manager, or email <a href="mailto:[email protected]">[email protected]</a></noscript> | ||
<div id="root"></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 |
---|---|---|
|
@@ -3,8 +3,15 @@ | |
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#000000" /> | ||
<meta name="mobile-web-app-capable" content="yes"> | ||
<meta name="apple-mobile-web-app-capable" content="yes"> | ||
<meta name="application-name" content="inst.bid"> | ||
<meta name="apple-mobile-web-app-title" content="inst.bid"> | ||
<meta name="theme-color" content="#287A9F"> | ||
<meta name="msapplication-navbutton-color" content="287A9F"> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> | ||
<meta name="msapplication-starturl" content="/"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content="Instructure product compliance information" /> | ||
|
||
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" /> | ||
|
@@ -16,7 +23,7 @@ | |
|
||
<body> | ||
<noscript>You need to enable JavaScript to run this app. To request compliance information directly ask your Customer | ||
Success Manager, or email [email protected]</noscript> | ||
Success Manager, or email <a href="mailto:[email protected]">[email protected]</a></noscript> | ||
<div id="root"></div> | ||
</body> | ||
|
||
|
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 |
---|---|---|
@@ -1,25 +1,66 @@ | ||
{ | ||
"short_name": "React App", | ||
"name": "Create React App Sample", | ||
"manifest_version": 3, | ||
"id": "com.instructure.instbid", | ||
"short_name": "inst.bid", | ||
"name": "Instructure Compliance Package", | ||
"version": "1.1.0", | ||
"author": "Gary Denne", | ||
"developer": { | ||
"name": "Danny Wahl", | ||
"url": "https://www.instructure.com" | ||
}, | ||
"start_url": "/#/", | ||
"scope": "/", | ||
"orientation": "any", | ||
"display": "standalone", | ||
"theme_color": "#287A9F", | ||
"background_color": "#ffffff", | ||
"display_override": [ | ||
"window-controls-overlay" | ||
], | ||
"icons": [ | ||
{ | ||
"src": "favicon.ico", | ||
"sizes": "64x64 32x32 24x24 16x16", | ||
"type": "image/x-icon" | ||
"sizes": "48x48", | ||
"type": "image/x-icon", | ||
"purpose": "any" | ||
}, | ||
{ | ||
"src": "logo192.png", | ||
"type": "image/png", | ||
"sizes": "192x192", | ||
"purpose": "any" | ||
}, | ||
{ | ||
"src": "logo192.png", | ||
"type": "image/png", | ||
"sizes": "192x192" | ||
"sizes": "192x192", | ||
"purpose": "maskable" | ||
}, | ||
{ | ||
"src": "logo512.png", | ||
"type": "image/png", | ||
"sizes": "512x512", | ||
"purpose": "any" | ||
}, | ||
{ | ||
"src": "logo512.png", | ||
"type": "image/png", | ||
"sizes": "512x512" | ||
"sizes": "512x512", | ||
"purpose": "maskable" | ||
} | ||
], | ||
"start_url": ".", | ||
"display": "standalone", | ||
"theme_color": "#000000", | ||
"background_color": "#ffffff" | ||
} | ||
"screenshots": [ | ||
{ | ||
"src": "screenshot-wide.png", | ||
"sizes": "1280x672", | ||
"type": "image/png", | ||
"form_factor": "wide" | ||
}, | ||
{ | ||
"src": "screenshot.png", | ||
"sizes": "596x833", | ||
"type": "image/png" | ||
} | ||
] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.