1
0
mirror of https://github.com/bigchaindb/site.git synced 2025-02-14 21:10:28 +01:00

more form content as data

This commit is contained in:
Matthias Kretschmann 2017-04-20 10:34:32 +02:00
parent a753a8f91f
commit 06e81b12a9
Signed by: m
GPG Key ID: BD3C1F3EDD7831FC
3 changed files with 33 additions and 22 deletions

View File

@ -121,8 +121,8 @@
} }
.feature__icon { .feature__icon {
stroke: darken($brand-main-green, 15%); stroke: $brand-main-blue;
color: $brand-main-violet; color: $brand-main-gray-lighter;
} }
.feature__title { .feature__title {

View File

@ -48,20 +48,9 @@
<p class="form-group"> <p class="form-group">
<select class="form-control" id="industry" name="industry" required data-required="true"> <select class="form-control" id="industry" name="industry" required data-required="true">
<option value="">&nbsp;</option> <option value="">&nbsp;</option>
<option value="Automotive">Automotive</option> {% for industry in page.contact.industries %}
<option value="Banking">Banking</option> <option value="{{ industry }}">{{ industry }}</option>
<option value="Consulting">Consulting</option> {% endfor %}
<option value="Data">Data</option>
<option value="Energy">Energy</option>
<option value="Government">Government</option>
<option value="Healthcare">Healthcare</option>
<option value="Identity">Identity &amp; Security</option>
<option value="Insurance">Insurance</option>
<option value="Information Technology">Information Technology</option>
<option value="Logistics">Logistics &amp; Shipping</option>
<option value="Manufacturing">Manufacturing</option>
<option value="Media">Media &amp; Content</option>
<option value="other">Other</option>
</select> </select>
<label class="form-label" for="industry">Industry</label> <label class="form-label" for="industry">Industry</label>
</p> </p>
@ -70,11 +59,9 @@
<p class="form-group"> <p class="form-group">
<select class="form-control" id="interest" name="interest" required data-required="true"> <select class="form-control" id="interest" name="interest" required data-required="true">
<option value="">&nbsp;</option> <option value="">&nbsp;</option>
<option value="Education">Education</option> {% for interest in page.contact.interests %}
<option value="Partnership">Partnership</option> <option value="{{ interest }}">{{ interest }}</option>
<option value="Prototype">Proof-of-Concept / Prototype / Pilot</option> {% endfor %}
<option value="Implementation">Implementation</option>
<option value="BigchainDB Enterprise Edition">BigchainDB Enterprise Subscription</option>
</select> </select>
<label class="form-label" for="interest">Interested in</label> <label class="form-label" for="interest">Interested in</label>
</p> </p>

View File

@ -48,7 +48,7 @@ intro:
icon: icon-monitoring icon: icon-monitoring
support: support:
title: "Hands-on enterprise support by the best" title: "Hands-on production support by the best"
description: "From ideation to production, we have the team and technology to deploy enterprise-grade applications and platforms for businesses looking to build the tools of tomorrow." description: "From ideation to production, we have the team and technology to deploy enterprise-grade applications and platforms for businesses looking to build the tools of tomorrow."
features: features:
- title: "Training" - title: "Training"
@ -64,6 +64,30 @@ support:
contact: contact:
title: "Get started now" title: "Get started now"
description: "Ready to start building with BigchainDB? Enter your details below and we'll be in touch right away." description: "Ready to start building with BigchainDB? Enter your details below and we'll be in touch right away."
interests:
- Training
- Partnership
- Proof-of-concept / prototype / pilot
- Production support
- Other
industries:
- Automotive
- Banking
- Consulting
- Data
- Energy
- Government
- Healthcare
- Identity & security
- Insurance
- Information technology
- Logistics & shipping
- Manufacturing
- Media & content
- Other
--- ---
<header class="hero hero--enterprise"> <header class="hero hero--enterprise">