aboutsummaryrefslogtreecommitdiff
path: root/views
diff options
context:
space:
mode:
Diffstat (limited to 'views')
-rw-r--r--views/layouts/layout.hbs11
-rw-r--r--views/verification.hbs10
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