added google account login and /login page

This commit is contained in:
Yaman 2014-12-24 12:33:41 -05:00
parent cfc8e6b7c2
commit bcc85b6446
7 changed files with 48 additions and 7 deletions

View File

@ -9,3 +9,5 @@ autopublish
insecure insecure
iron:router iron:router
momentjs:moment momentjs:moment
accounts-google
accounts-ui

View File

@ -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

View File

@ -1,14 +1,23 @@
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;
} }

View File

@ -0,0 +1,6 @@
#login-buttons {
margin: 0 auto;
padding-left: 26.5%;
padding-bottom: 5%;
padding-top: 5%;
}

View 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>

View File

@ -3,3 +3,5 @@ Router.route('/', function() {
}) })
Router.route('/checkout'); Router.route('/checkout');
Router.route('/login');