49 lines
1.8 KiB
HTML
49 lines
1.8 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>
|
|
<br style="margin-left: 15px;">
|
|
Anderson Valley Education Foundation, Inc.<br/>
|
|
P.O. Box 242<br/>
|
|
Boonville, CA 95415<br/>
|
|
</div>
|
|
|
|
<h3>In person:</h3>
|
|
<div style="margin-left: 15px;">
|
|
Please see the list of current board members linked here: <a href="#!/current-board">Current Board of Directors</a>
|
|
</div>
|
|
|
|
<h3>By email:</h3>
|
|
<div style='margin-left: 15px;'>
|
|
<form name="contactForm" id="contactForm" action="submit()">
|
|
<div style="margin: 6px 0;">
|
|
<div class="fieldHeading">Your Name:</div>
|
|
<div><input type="text" name="name" ng-model="message.name" required ng-maxlength="255"></input></div>
|
|
</div>
|
|
<div style="margin: 6px 0;">
|
|
<div class="fieldHeading">Your Email:</div>
|
|
<div>
|
|
<input type="email" name="email" ng-model="message.email" required ng-maxlength="255">
|
|
sAlert.error('Your message', configOverwrite);
|
|
</input>
|
|
</div>
|
|
</div>
|
|
<div style="margin: 6px 0;">
|
|
<textarea name="content" ng-model="message.content" required ng-maxlength="65000">
|
|
<span class="error" ng-show="contactForm.content.$error.required"></span>
|
|
<span class="error" ng-show="contactForm.name.$error.maxlength">Message is too long!</span>
|
|
</textarea>
|
|
</div>
|
|
<div style="text-align: right">
|
|
<button form="contactForm" type="button" value="Send" style="width: 100px; height: 20px;" ng-click="submit()" ng-disabled="contactForm.$invalid">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> |