mirror of
https://github.com/seigler/dash-website
synced 2025-07-26 23:06:09 +00:00
Merge branch 'master' into feature/send-contact-email * master: cleanup on news posts to invoke and include in build fix minor typo updated ruby version Adds address to contact page. -- wallets/index.html: Pulls all electrum wallets -- fixes padding for EXODUS logo -- fixes extra curly brace on homepage News post +video (#116) News post +video Conflicts: _includes/hero/contact.html
78 lines
2.5 KiB
HTML
78 lines
2.5 KiB
HTML
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
|
|
|
|
<div class="hero" id="hero">
|
|
<div class="hero__background">
|
|
|
|
</div>
|
|
|
|
<!-- Navigation -->
|
|
{% include nav-desktop.html %}
|
|
|
|
<!-- Hero content -->
|
|
<div class="hero__content">
|
|
<h1 class="hero__title">{% t pages.contact.hero-heading %}</h1>
|
|
<p class="hero__lead">{% t pages.contact.hero-text %}</p>
|
|
|
|
<form onsubmit="return false;">
|
|
<div class="row">
|
|
<div class="col-sm-4">
|
|
{% t pages.contact.form-pretext %} <br/>
|
|
{% t pages.contact.form-pretext-2 %}
|
|
<!--<a style="display: inline-block;" href="mailto:contact@dash.org"> Contact us.</a>-->
|
|
<!-- !!!remove after form is back up-->
|
|
</div>
|
|
<div class="col-sm-8">
|
|
<div class="row">
|
|
<div class="col-xs-6">
|
|
<input id="contact_name" placeholder="Name" type="text" class="input-block bottom-space">
|
|
<input id='contact_email' class="input-block bottom-space" placeholder="Email" type="text">
|
|
<select id="contact_category" class="form-control input-block bottom-space" placeholder="category">
|
|
<option value="">Category</option>
|
|
<option value="feedback">Feedback</option>
|
|
<option value="inquiry">Inquiry</option>
|
|
<option value="offering">Offer</option>
|
|
<option value="request">Request</option>
|
|
<option value="other">Other Communication</option>
|
|
</select>
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<div class="callout-blue compact">
|
|
Dash <br/>
|
|
1475 North Scottsdale Road, Suite 200 <br/>
|
|
Scottsdale, Arizona 85257-3538 <br/>
|
|
USA <br />
|
|
<a href="https://goo.gl/maps/ES3A21Bf55y" target="_blank">View in Google Maps</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<textarea id="contact_message" placeholder="Message" class="input-block"></textarea>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-xs-12">
|
|
<input class="btn-blue-solid reset" type="submit" value="Send Message">
|
|
<div id="msg_sent" style="display: none;"> Message Sent!</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
|
|
<!-- Hero stripe -->
|
|
<div class="hero__stripe"></div>
|
|
</div>
|
|
|
|
|
|
<!--
|
|
____ ____ _ _____ ____ ____ _____
|
|
/ _\/ _ \/ \ /|/__ __\/ _ \/ _\/__ __\
|
|
| / | / \|| |\ || / \ | / \|| / / \
|
|
| \__| \_/|| | \|| | | | |-||| \_ | |
|
|
\____/\____/\_/ \| \_/ \_/ \|\____/ \_/
|
|
|
|
20170210_2353_ccw
|
|
-->
|