added google account login and /login page
This commit is contained in:
parent
cfc8e6b7c2
commit
bcc85b6446
@ -9,3 +9,5 @@ autopublish
|
|||||||
insecure
|
insecure
|
||||||
iron:router
|
iron:router
|
||||||
momentjs:moment
|
momentjs:moment
|
||||||
|
accounts-google
|
||||||
|
accounts-ui
|
||||||
|
|||||||
@ -1,3 +1,8 @@
|
|||||||
|
accounts-base@1.1.3
|
||||||
|
accounts-google@1.0.3
|
||||||
|
accounts-oauth@1.1.3
|
||||||
|
accounts-ui@1.1.4
|
||||||
|
accounts-ui-unstyled@1.1.5
|
||||||
application-configuration@1.0.4
|
application-configuration@1.0.4
|
||||||
autopublish@1.0.2
|
autopublish@1.0.2
|
||||||
autoupdate@1.1.4
|
autoupdate@1.1.4
|
||||||
@ -14,6 +19,7 @@ ejson@1.0.5
|
|||||||
fastclick@1.0.2
|
fastclick@1.0.2
|
||||||
follower-livedata@1.0.3
|
follower-livedata@1.0.3
|
||||||
geojson-utils@1.0.2
|
geojson-utils@1.0.2
|
||||||
|
google@1.1.3
|
||||||
html-tools@1.0.3
|
html-tools@1.0.3
|
||||||
htmljs@1.0.3
|
htmljs@1.0.3
|
||||||
http@1.0.9
|
http@1.0.9
|
||||||
@ -30,7 +36,9 @@ iron:url@1.0.6
|
|||||||
jquery@1.0.2
|
jquery@1.0.2
|
||||||
json@1.0.2
|
json@1.0.2
|
||||||
launch-screen@1.0.1
|
launch-screen@1.0.1
|
||||||
|
less@1.0.12
|
||||||
livedata@1.0.12
|
livedata@1.0.12
|
||||||
|
localstorage@1.0.2
|
||||||
logging@1.0.6
|
logging@1.0.6
|
||||||
meteor@1.1.4
|
meteor@1.1.4
|
||||||
meteor-platform@1.2.1
|
meteor-platform@1.2.1
|
||||||
@ -39,6 +47,8 @@ minimongo@1.0.6
|
|||||||
mobile-status-bar@1.0.2
|
mobile-status-bar@1.0.2
|
||||||
momentjs:moment@2.8.4
|
momentjs:moment@2.8.4
|
||||||
mongo@1.0.10
|
mongo@1.0.10
|
||||||
|
oauth@1.1.3
|
||||||
|
oauth2@1.1.2
|
||||||
observe-sequence@1.0.4
|
observe-sequence@1.0.4
|
||||||
ordered-dict@1.0.2
|
ordered-dict@1.0.2
|
||||||
random@1.0.2
|
random@1.0.2
|
||||||
@ -47,6 +57,7 @@ reactive-var@1.0.4
|
|||||||
reload@1.1.2
|
reload@1.1.2
|
||||||
retry@1.0.2
|
retry@1.0.2
|
||||||
routepolicy@1.0.3
|
routepolicy@1.0.3
|
||||||
|
service-configuration@1.0.3
|
||||||
session@1.0.5
|
session@1.0.5
|
||||||
spacebars@1.0.4
|
spacebars@1.0.4
|
||||||
spacebars-compiler@1.0.4
|
spacebars-compiler@1.0.4
|
||||||
|
|||||||
@ -1,22 +1,31 @@
|
|||||||
|
body {
|
||||||
|
-webkit-user-select: none;
|
||||||
|
}
|
||||||
|
|
||||||
.chromebook {
|
.chromebook {
|
||||||
font-family: Lato;
|
font-family: Lato;
|
||||||
padding-left:2%;
|
padding-left:2%;
|
||||||
margin-left:3%;
|
margin-left:3%;
|
||||||
margin-right:0.5%;
|
margin-right:3%;
|
||||||
margin-top:.7%;
|
margin-top:.7%;
|
||||||
margin-bottom:.7%;
|
margin-bottom:.7%;
|
||||||
box-shadow: 3px 3px 10px #c2c2c2;
|
box-shadow: 3px 3px 10px #c2c2c2;
|
||||||
color: #000000;
|
color: #000000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.time {
|
||||||
|
font-size: 75%;
|
||||||
|
color: #6D6E6D;
|
||||||
|
}
|
||||||
|
|
||||||
.available {
|
.available {
|
||||||
background-color:#72D376;
|
background-color:#72D376;
|
||||||
}
|
}
|
||||||
|
|
||||||
.checkedout {
|
.checkedout {
|
||||||
background-color:#F9DB45;
|
background-color:#F9DB45;
|
||||||
}
|
}
|
||||||
|
|
||||||
.unavailable {
|
.unavailable {
|
||||||
background-color:#E14C2B;
|
background-color:#E14C2B;
|
||||||
}
|
}
|
||||||
6
chromebook-checkout-meteor/client/login.css
Normal file
6
chromebook-checkout-meteor/client/login.css
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
#login-buttons {
|
||||||
|
margin: 0 auto;
|
||||||
|
padding-left: 26.5%;
|
||||||
|
padding-bottom: 5%;
|
||||||
|
padding-top: 5%;
|
||||||
|
}
|
||||||
11
chromebook-checkout-meteor/client/login.html
Normal file
11
chromebook-checkout-meteor/client/login.html
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
<template name="login">
|
||||||
|
<div id="center">
|
||||||
|
<div id="sign-in">
|
||||||
|
<h5>Chromebook Checkout</h5>
|
||||||
|
{{> loginButtons}}
|
||||||
|
</div>
|
||||||
|
<p class="bottom">Checkout a chromebook.
|
||||||
|
<img class="chromeicon" src="ico/chrico.png">
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
@ -54,7 +54,7 @@ a {
|
|||||||
padding-bottom:0;
|
padding-bottom:0;
|
||||||
padding-top:0;
|
padding-top:0;
|
||||||
}
|
}
|
||||||
button{
|
button {
|
||||||
background: #d94158;
|
background: #d94158;
|
||||||
background-image: -webkit-linear-gradient(top, #d94158, #ad3838);
|
background-image: -webkit-linear-gradient(top, #d94158, #ad3838);
|
||||||
background-image: -moz-linear-gradient(top, #d94158, #ad3838);
|
background-image: -moz-linear-gradient(top, #d94158, #ad3838);
|
||||||
@ -71,7 +71,7 @@ button{
|
|||||||
margin-left:21.15%;
|
margin-left:21.15%;
|
||||||
margin-top:2%;
|
margin-top:2%;
|
||||||
margin-bottom:2%;
|
margin-bottom:2%;
|
||||||
}
|
}
|
||||||
button:hover {
|
button:hover {
|
||||||
background: #db6b6b;
|
background: #db6b6b;
|
||||||
background-image: -webkit-linear-gradient(top, #db6b6b, #d64949);
|
background-image: -webkit-linear-gradient(top, #db6b6b, #d64949);
|
||||||
|
|||||||
@ -2,4 +2,6 @@ Router.route('/', function() {
|
|||||||
this.render("initial");
|
this.render("initial");
|
||||||
})
|
})
|
||||||
|
|
||||||
Router.route('/checkout');
|
Router.route('/checkout');
|
||||||
|
|
||||||
|
Router.route('/login');
|
||||||
Loading…
x
Reference in New Issue
Block a user