diff options
| author | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-27 08:59:40 +0000 |
|---|---|---|
| committer | nanalelfe <nargiza.nosirova@mail.utoronto.ca> | 2016-07-27 08:59:40 +0000 |
| commit | b0cbe2db0ee3311fc028e7229749726d4cfe6973 (patch) | |
| tree | 76f04328c7f4026f80b20fe25a1f01a78ddf7c26 /views | |
| parent | ef5d0e0304cea09fdd67745153e617b197667479 (diff) | |
Added third party verification.
Diffstat (limited to 'views')
| -rw-r--r-- | views/layouts/layout.hbs | 11 | ||||
| -rw-r--r-- | views/verification.hbs | 10 |
2 files changed, 19 insertions, 2 deletions
diff --git a/views/layouts/layout.hbs b/views/layouts/layout.hbs index b9895a5..76dddc0 100644 --- a/views/layouts/layout.hbs +++ b/views/layouts/layout.hbs @@ -29,9 +29,16 @@ </head> <body> - {{> header }} + {{# if noHeader}} + {{else}} + {{> header }} + {{/if}} + {{{ body }}} - {{> footer }} + {{# if noHeader}} + {{else}} + {{> footer }} + {{/if}} {{> login }} {{> registration }} </body> diff --git a/views/verification.hbs b/views/verification.hbs new file mode 100644 index 0000000..564af50 --- /dev/null +++ b/views/verification.hbs @@ -0,0 +1,10 @@ +<main id="solutions-main"> + <div class="container"> + <div class="jumbotron text-center"> + <h3><span class="fa fa-lock"></span> Verification</h3> + + <p>Login with:</p> + <a href="/auth/facebook" class="btn btn-primary"><span class="fa fa-facebook"></span> Facebook</a> + </div> + </div> +</main>
\ No newline at end of file |
