Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/create company #16

Merged
merged 7 commits into from
May 14, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions dashboard/create.pug
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
doctype html
html(lang="en")
- var stylesheet = '/src/css/dashboard.css'
include ../includes/head.pug
body
include header.pug
section.settings
h1 Settings
p Welcome 
span#username
button#logout log out
form#create
div
label(for="name") Name
input#name(type="text",name="name",placeholder="company name")
fieldset
label employees
div.inline
input(type="email", placeholder="[email protected]", name="email-0", data-num="0")
button#add(type="button") +
input(type="submit",value="submit")

script(src="/src/js/settings.js")
include ../includes/foot.pug
3 changes: 2 additions & 1 deletion dashboard/settings.pug
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ html(lang="en")
form#settings
label(for="company") Pick the company you want to admin
select#company(name="company")
a(href="create.html") create a new company
input(type="submit",value="submit")
form#contact
p Let your employees contact you
Expand All @@ -27,7 +28,7 @@ html(lang="en")
input(type="submit",value="submit")
form#invite
p Invite employees to your team. They'll receive an email instructing how to join your team.
formset
fieldset
div.inline
input(type="email", placeholder="[email protected]", name="email-0", data-num="0")
button#add(type="button") +
Expand Down
15 changes: 0 additions & 15 deletions demo/chart.pug

This file was deleted.

42 changes: 0 additions & 42 deletions src/js/chart.js

This file was deleted.

Loading