-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Overhaul the credentials popup page, including some base styles
- Loading branch information
Showing
5 changed files
with
53 additions
and
50 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 |
---|---|---|
@@ -1,43 +1,26 @@ | ||
<!DOCTYPE html> | ||
<!-- | ||
Copyright (c) 2016 Google Inc. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<html> | ||
<head> | ||
<meta charset=utf-8 /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Google Sign In in Chrome Extensions Example</title> | ||
<title>Prairie Dog Brewing Technology Department</title> | ||
|
||
<link rel="stylesheet" href="pdb-styles.css"> | ||
<link rel="stylesheet" href="main.css"> | ||
|
||
<!-- *************************************************************************************** | ||
* TODO(DEVELOPER): Make sure you are importing the latest version of the Firebase JS. * | ||
*************************************************************************************** --> | ||
<script src="https://www.gstatic.com/firebasejs/4.0.0/firebase.js"></script> | ||
<script src="credentials.js"></script> | ||
</head> | ||
<body> | ||
<h3>Firebase Authentication</h3> | ||
|
||
<div class="quickstart-user-details-container"> | ||
<button id="quickstart-button">Sign-in with Google</button> | ||
<p> | ||
Firebase sign-in status: <span id="quickstart-sign-in-status">Unknown</span> | ||
<div>Firebase auth <code>currentUser</code> object value:</div> | ||
<pre><code id="quickstart-account-details">null</code></pre> | ||
<img src="pdb-logo-big.png" class="header-image"> | ||
<h3>Prairie Dog Brewing</h3> | ||
<h4>Technology Department</h3> | ||
<div class="quickstart-user-details-container" id="signin"> | ||
<p id="enjoy" style="display:none;"> | ||
You are now authenticated with the <strong>Prairie Dog Brewing Technology | ||
Department</strong>. We are pleased to bring you tools and enhancements to | ||
the EKOS Brewmaster website. Additional Data nodes coming soon. | ||
</p> | ||
<button id="quickstart-button">Sign-in</button> | ||
</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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,26 @@ | ||
@font-face {font-family: "After Disaster"; | ||
src: url("//db.onlinewebfonts.com/t/a41479893690030a24b109401e1f7b10.eot"); | ||
src: url("//db.onlinewebfonts.com/t/a41479893690030a24b109401e1f7b10.eot?#iefix") format("embedded-opentype"), | ||
url("//db.onlinewebfonts.com/t/a41479893690030a24b109401e1f7b10.woff2") format("woff2"), | ||
url("//db.onlinewebfonts.com/t/a41479893690030a24b109401e1f7b10.woff") format("woff"), | ||
url("//db.onlinewebfonts.com/t/a41479893690030a24b109401e1f7b10.ttf") format("truetype"), | ||
url("//db.onlinewebfonts.com/t/a41479893690030a24b109401e1f7b10.svg#After Disaster") format("svg"); | ||
} | ||
|
||
p { | ||
font-face: Roboto Condensed Bold; | ||
color: #5A4638; | ||
} | ||
|
||
|
||
h3, h4 { | ||
color: #5A4638; | ||
font-family: After Disaster; | ||
text-align: center; | ||
} | ||
h3 { | ||
font-size: 3em; | ||
} | ||
h4 { | ||
font-size: 2em; | ||
} |