1
0
mirror of https://github.com/mgerb/mywebsite synced 2026-01-11 18:32:50 +00:00
This commit is contained in:
2015-06-24 14:58:49 -05:00
parent a2c44e494f
commit cfec58df9a
6 changed files with 53 additions and 21 deletions

View File

@@ -9,7 +9,7 @@ block content
div.row
div.col-lg-4
h1 Submit Form
form(action="/", method="post")
form(action="/information", method="post")
div.form-group
Span Phone Number:
br
@@ -17,13 +17,27 @@ block content
br
Span Date:
br
input.form-control(type="text", name="date", placeholder="mm/dd/yy")
input.form-control(type="text", name="date", id="datepicker" placeholder="mm/dd/yy")
br
Span Time:
br
input.form-control(type="text", name="time", placeholder="12:00 am")
input.form-control(type="text", name="time", id="timepicker" placeholder="12:00 am")
br
Span Message:
input.form-control(type="textarea", name="message")
br
input(type="submit", value="submit").btn
input(type="submit", value="submit").btn
div.col-lg-4
h1 Search by number
form(action="/search", method="post")
div.form-group
Span Phone Number:
br
input.form-control(type="text", name="searchNumber", placeholder="555-555-5555")
br
input(type="submit", value="submit").btn
br
ul
each val, index in findParams
li= index + " " + val
br

View File

@@ -4,7 +4,12 @@ html
title= "Mithell's Node.js Project"
link(rel='stylesheet', href='bootstrap/css/bootstrap.css')
link(rel='stylesheet', href='/stylesheets/style.css')
link(rel='stylesheet', href='jquery-ui-1.11.4/jquery-ui.css')
link(rel='stylesheet', href='jquery-timepicker/jquery.timepicker.css')
body
block content
script(src="http://code.jquery.com/jquery-latest.min.js")
script(src="bootstrap/js/bootstrap.js")
script(src="bootstrap/js/bootstrap.js")
script(src="jquery-ui-1.11.4/jquery-ui.js")
script(src="jquery-timepicker/jquery.timepicker.js")
script(src="javascripts/custom.js")