Skip to content

Commit

Permalink
Modified Required to not have text
Browse files Browse the repository at this point in the history
  • Loading branch information
nejizofa committed Sep 7, 2013
1 parent bea71f9 commit 48f57cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions views/index.jade
Expand Up @@ -39,9 +39,9 @@ block content
div.formField.well(style="width:220px; margin-left:65%; margin-top:35px; padding:10px; border:3px solid #373535; background:#0069ad;")
form#wideform(action='/#{schoolName}/thankyou',method='post', style="margin:0px;")
div(style="width:100%")
input(type="text", placeholder="Name", required=true, name="name")
input(type="text", placeholder="Name", required, name="name")

input(type="email", placeholder="Email", required=true, name="email")
input(type="email", placeholder="Email", required, name="email")
input(type="hidden", value="#{type}", name="type")
input(type="tel", required, placeholder="Text me at: Ex 888-888-8888", name="phone", pattern='\\d{3}[\\-]\\d{3}[\\-]\\d{4}')
select(name="program")
Expand Down Expand Up @@ -83,9 +83,9 @@ block content
div.formField.well(style="width:220px; margin-left:65%; margin-top:35px; padding:10px; border:3px solid #373535; background:#0069ad;")
form#wideform(action='/#{schoolName}/thankyou',method='post', style="margin:0px;")
div(style="width:100%")
input(type="text", placeholder="Name", required=true, name="name")
input(type="text", placeholder="Name", required, name="name")

input(type="email", placeholder="Email", required=true, name="email")
input(type="email", placeholder="Email", required, name="email")
input(type="hidden", value="#{type}", name="type")
input(type="tel", required, placeholder="Text me at: Ex 888-888-8888", name="phone", pattern='\\d{3}[\\-]\\d{3}[\\-]\\d{4}')
select(name="program")
Expand Down

0 comments on commit 48f57cb

Please sign in to comment.