Skip to content

Commit

Permalink
Started front end #60
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdellomes committed Jan 16, 2017
1 parent cc6a4e3 commit 3e48247
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
13 changes: 13 additions & 0 deletions routes/view_routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,6 +164,19 @@ var viewRoutes = [
handler: function (req, res) {
res.view('settings.html', {

});
}
},

{
path: '/profile',
methodd: 'GET',
config: {
auth: false
},
handler: function (req, res) {
res.view('profile.html', {

});
}
}
Expand Down
18 changes: 18 additions & 0 deletions templates/profile.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{% include "components/_header.html" %}
{% include "components/_navbar.html" %}
<div class="row">
<div class="col-lg-12">
<table id="followups">
<tr>
<th>ID</th>
<th>Timestamp</th>
<th>Note</th>
<th>Client</th>
<th>Location</th>
</tr>
</table>
</div>
</div>

{% include "components/_basescript.html" %}
{% include "components/_footer.html" %}

0 comments on commit 3e48247

Please sign in to comment.