42 lines
1.4 KiB
HTML
42 lines
1.4 KiB
HTML
<template name="Contact">
|
|
<div id="contactView" class="textView">
|
|
<p>If you would like to know more about our programs or become involved please contact us in any of the following ways:</p>
|
|
|
|
<h3>By mail:</h3>
|
|
<div style="margin-left: 15px;">
|
|
<li>Anderson Valley Education Foundation, Inc.</li>
|
|
<li>P.O. Box 242</li>
|
|
<li>Boonville, CA 95415</li>
|
|
</div>
|
|
|
|
<h3>In person:</h3>
|
|
<div style="margin-left: 15px;">
|
|
Please see the list of current board members linked here: <a href="{{pathFor 'CurrentBoard'}}">board of directors</a>
|
|
</div>
|
|
|
|
<h3>By email:</h3>
|
|
<div style='margin-left: 15px;'>
|
|
<form name="contactForm" id="contactForm" onsubmit="javascript:">
|
|
<div style="margin: 6px 0;">
|
|
<div class="fieldHeading">Your Name:</div>
|
|
<div><input type="text" name="name" required maxlength="255"></div>
|
|
</div>
|
|
<div style="margin: 6px 0;">
|
|
<div class="fieldHeading">Your Email:</div>
|
|
<div>
|
|
<input type="email" name="email" required maxlength="255"/>
|
|
</div>
|
|
</div>
|
|
<div style="margin: 6px 0;"><textarea name="content" required maxlength="65000"></textarea></div>
|
|
<div style="text-align: right">
|
|
<button class="send" type="button" value="Send" style="width: 100px; height: 20px;">Send</button>
|
|
</div>
|
|
</form>
|
|
<div id="contactFormSuccess" style="display:none">
|
|
<p>We have received your message.</p>
|
|
<p>Thank you for your input.</p>
|
|
<br/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template> |