Initial Commit

This commit is contained in:
root
2013-05-06 03:38:29 -04:00
commit d392a540e7
134 changed files with 22012 additions and 0 deletions

18
app/views/error.jade Normal file
View File

@ -0,0 +1,18 @@
doctype 5
html(lang="en")
head
title Atlantic Biomedical - Login
!{css}
body.login-page
.container-fluid
#loginbox
.brand-container
.brand Atlantic Biomedical
form
.alert.alert-error
| You are not authorized to access this site.
| Please contact your site administrator to request access.
p
| Please login with your Google Apps account to continue.
.form-actions
a.btn.btn-danger(href='/auth') Login with Google Apps

50
app/views/index.jade Normal file
View File

@ -0,0 +1,50 @@
doctype 5
html(lang="en", ng-app="biomed", ng-controller="biomed.PageCtrl")
head
title Atlantic Biomedical
!{css}
body
error-panel
.navbar
.navbar-inner
a.brand(href='/', target='_self') Atlantic Biomedical
progress-panel
ul.nav.pull-right(ng-controller='biomed.AccountCtrl')
li
a(href='http://atlanticbiomedical.com/ticket/', target='_blank')
i.icon-fire
| Tickets
li
a(ng-click="openDialog()")
i.icon-envelope
| Messages
li
a(href='/logout', target='_self')
i.icon-share-alt
| Logout
li(ng-show='account.name')
a(href='#')
i.icon-user
| {{account.name.first}} {{account.name.last}}
li.photo(ng-show='account.picture', ns-show='account.picture')
img(ng-src='{{account.picture}}?sz=50')
.navbar.navbar-secondary(bio-navbar)
.navbar-inner
ul.nav
li(data-match-route='/schedule.*')
a(href='/schedule')
i.icon-calendar
| Schedule
li(data-match-route='/client.*')
a(href='/clients')
i.icon-briefcase
| Clients
li(data-match-route='/workorder.*')
a(href='/workorders')
i.icon-wrench
| Workorders
.container-fluid
ng-view
!{js}

15
app/views/login.jade Normal file
View File

@ -0,0 +1,15 @@
doctype 5
html(lang="en")
head
title Atlantic Biomedical - Login
!{css}
body.login-page
.container-fluid
#loginbox
.brand-container
.brand Atlantic Biomedical
form
p
| Please login with your Google Apps account to continue.
.form-actions
a.btn.btn-danger(href='/auth') Login with Google Apps