diff options
author | Martin Wright <martin@mynameismartin.com> | 2017-07-06 16:48:16 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2017-07-07 11:43:13 +0100 |
commit | 8080651541e5b0cd3a5fbf80276273dac79273d8 (patch) | |
tree | 2745d32c8e87cbb2277ba28bce825de47006cb8e | |
parent | 7c234d71c7691ccbd419032bee5e737146d82368 (diff) |
[fixmystreet.com] Optional phone on council form.
-rw-r--r-- | templates/web/fixmystreet.com/about/council.html | 5 | ||||
-rw-r--r-- | web/cobrands/fixmystreet.com/fmsforcouncils.scss | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/templates/web/fixmystreet.com/about/council.html b/templates/web/fixmystreet.com/about/council.html index d36421fef..062a66a21 100644 --- a/templates/web/fixmystreet.com/about/council.html +++ b/templates/web/fixmystreet.com/about/council.html @@ -659,6 +659,11 @@ <p class="form-note">Ending in .gov.uk</p> </div> <div class="form-group"> + <label for="extra.phone">Contact phone number</label> + <span class="required required--optional">optional</span> + <input type="text" name="extra.phone" id="extra.phone"> + </div> + <div class="form-group"> <label for="email-newsletter" class="checkbox-label"> <input type="checkbox" name="extra.newsletter" value="Sign me up to the Better Cities newsletter" id="email-newsletter" class="checkbox-input"> Sign up for the Better Cities newsletter for news and insights on smarter technology for councils.</label> </div> <div class="form-group submit-group"> diff --git a/web/cobrands/fixmystreet.com/fmsforcouncils.scss b/web/cobrands/fixmystreet.com/fmsforcouncils.scss index 6351b7b9c..bf156b73d 100644 --- a/web/cobrands/fixmystreet.com/fmsforcouncils.scss +++ b/web/cobrands/fixmystreet.com/fmsforcouncils.scss @@ -805,6 +805,9 @@ $fms-pink: #E65376; top: 3px; font-size: 0.75em; color: $fms-pink; + &.required--optional { + color: #777; + } } .council-order__screenshot { |