This commit is contained in:
@@ -1,196 +1,181 @@
|
||||
@page
|
||||
@model ContactModel
|
||||
@{
|
||||
ViewData["Title"] = "Contact";
|
||||
ViewData["Title"] = "Contact";
|
||||
}
|
||||
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="jumbotron text-center" style="background-image: url(images/jumbotronbackgroundABC.png); background-size: 100% no-repeat center;">
|
||||
<font color="white"><h2>Have questions? We have answers!</h2>
|
||||
</font>
|
||||
</div><!--close jumbotron-->
|
||||
<hr>
|
||||
|
||||
|
||||
<p> </p>
|
||||
<div class="container">
|
||||
|
||||
<div class="jumbotron text-center"
|
||||
style="background-image: url(images/jumbotronbackgroundABC.png); background-size: 100% no-repeat center;">
|
||||
<font color="white">
|
||||
<h2>Have questions? We have answers!</h2>
|
||||
</font>
|
||||
</div>
|
||||
<!--close jumbotron-->
|
||||
<hr>
|
||||
|
||||
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<ul>
|
||||
<li>Check out the <a href="https://ayanova.com/faqanswers.htm">Answers to Frequently Asked Questions</a> including technical, configurations, licensing, pricing, purchasing and more</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Follow along with the step tutorial <a href="https://www.ayanova.com/AyaNova7webHelp/index.html?basic_overview_of_a_workorder.htm">How do I...?'s</a> with screenshots in the AyaNova online Help documentation</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Check out <a href="https://www.ayanova.com/AyaNova7webHelp/index.html?accessing_data_displayed_in_ma.htm">details about each feature</a> of AyaNova and/or its optional add-on in the AyaNova online Help documentation</li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>View answers to common questions on the <a href="http://forum.ayanova.com" target="_blank">AyaNova Support Forum</a></li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Contact us via direct email at <strong>support@ayanova.com</strong></li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Have a quick question? Send us your question via our online form below</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<form class="form form-horizontal" method="post">
|
||||
<div asp-validation-summary="All"></div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<label asp-for="Contact.Name" class="col-md-3 right">Name:</label>
|
||||
<div class="col-md-9">
|
||||
<input asp-for="Contact.Name" class="form-control" required autofocus />
|
||||
<span asp-validation-for="Contact.Name"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<label asp-for="Contact.Company" class="col-md-3 right">Company:</label>
|
||||
<div class="col-md-9">
|
||||
<input asp-for="Contact.Company" placeholder="Your Company Name" class="form-control" required />
|
||||
<span asp-validation-for="Contact.Company"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<p> </p>
|
||||
|
||||
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<label asp-for="Contact.DbId" class="col-md-3 right">DbId:</label>
|
||||
<div class="col-md-9">
|
||||
<input asp-for="Contact.DbId" placeholder="AyaNova 8 Database Id (optional)" class="form-control" required />
|
||||
<span asp-validation-for="Contact.DbId"></span>
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<ul>
|
||||
<li>Contact us via direct email at <strong>support@ayanova.com</strong></li>
|
||||
</ul>
|
||||
<ul>
|
||||
<li>Or send us your question via our online form below</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<label asp-for="Contact.Email" class="col-md-3 right">Email:</label>
|
||||
<div class="col-md-9">
|
||||
<input asp-for="Contact.Email" placeholder="email@you.com" class="form-control" required />
|
||||
<span asp-validation-for="Contact.Email"></span>
|
||||
<form class="form form-horizontal" method="post">
|
||||
<div asp-validation-summary="All"></div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<label asp-for="Contact.Name" class="col-md-3 right">Name:</label>
|
||||
<div class="col-md-9">
|
||||
<input asp-for="Contact.Name" class="form-control" required autofocus />
|
||||
<span asp-validation-for="Contact.Name"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<label asp-for="Contact.Message" class="col-md-3 right">Message:</label>
|
||||
<div class="col-md-9">
|
||||
<textarea asp-for="Contact.Message" placeholder="Any questions for us?" rows="6" class="form-control"></textarea>
|
||||
<span asp-validation-for="Contact.Message"></span>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<label asp-for="Contact.Company" class="col-md-3 right">Company:</label>
|
||||
<div class="col-md-9">
|
||||
<input asp-for="Contact.Company" placeholder="Your Company Name" class="form-control" required />
|
||||
<span asp-validation-for="Contact.Company"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<label asp-for="Contact.DbId" class="col-md-3 right">DbId:</label>
|
||||
<div class="col-md-9">
|
||||
<input asp-for="Contact.DbId" placeholder="AyaNova Database Id (optional)" class="form-control"
|
||||
required />
|
||||
<span asp-validation-for="Contact.DbId"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<label asp-for="Contact.Email" class="col-md-3 right">Email:</label>
|
||||
<div class="col-md-9">
|
||||
<input asp-for="Contact.Email" placeholder="email@you.com" class="form-control" required />
|
||||
<span asp-validation-for="Contact.Email"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="form-group">
|
||||
<label asp-for="Contact.Message" class="col-md-3 right">Message:</label>
|
||||
<div class="col-md-9">
|
||||
<textarea asp-for="Contact.Message" placeholder="Any questions for us?" rows="6"
|
||||
class="form-control"></textarea>
|
||||
<span asp-validation-for="Contact.Message"></span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<!-- Button -->
|
||||
<div class="form-group">
|
||||
|
||||
<label class="col-md-4 control-label" for="Send"></label>
|
||||
<div class="col-md-4">
|
||||
<div class="g-recaptcha" data-callback="imNotARobot" data-sitekey="6LcH7GUUAAAAAJIDf_JDZolSv__xN6oqr9Dx79zs"></div>
|
||||
<button id="btnsubmit" type="submit" class="btn btn-info" >Send us your question</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="row">
|
||||
|
||||
<!-- Button -->
|
||||
<div class="form-group">
|
||||
|
||||
<label class="col-md-4 control-label" for="Send"></label>
|
||||
<div class="col-md-4">
|
||||
<div class="g-recaptcha" data-callback="imNotARobot" data-sitekey="6LcH7GUUAAAAAJIDf_JDZolSv__xN6oqr9Dx79zs">
|
||||
</div>
|
||||
<button id="btnsubmit" type="submit" class="btn btn-info">Send us your question</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- <div class="row">
|
||||
<div class="col-md-12">
|
||||
<button type="submit">Send</button>
|
||||
</div>
|
||||
</div> -->
|
||||
</form>
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<p>The email address you provided will automatically and immediately receive a copy of what you sent to us as confirmation too. </p>
|
||||
<p>All of our responses are from real live people, so there could be a delay receiving a reply due to time zone differences, time of day, weekend, or if a holiday long weekend.</p>
|
||||
<strong><p>Why do we ask for your name, company name and email address?</p></strong>
|
||||
<p>We use the information you send us to respond to you, to provide sales support and technicial support to you and your company, and to make AyaNova recommendations and suggestions to you and your company. Also refer to our <a href="https://www.ayanova.com/privacypolicy.htm" target="_blank">Privacy Policy</a> for more clarity.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<p>All of our responses are from real live people, so there could be a delay receiving a reply due to time
|
||||
zone differences, time of day, weekend, or if a holiday long weekend.</p>
|
||||
<strong>
|
||||
<p>Why do we ask for your name, company name and email address?</p>
|
||||
</strong>
|
||||
<p>We use the information you send us to respond to you, to provide sales support and technicial support to
|
||||
you and your company, and to make AyaNova recommendations and suggestions to you and your company. Also
|
||||
refer to our <a href="https://www.ayanova.com/privacypolicy.htm" target="_blank">Privacy Policy</a> for more
|
||||
clarity.</p>
|
||||
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h3>If you have sent a question, but have not received a confirmation email</h3>
|
||||
<p> </p>
|
||||
<p><strong>1. Check the spelling of your email address:</strong></p>
|
||||
<p>Just in case!</p>
|
||||
<p> </p>
|
||||
<p><strong>2. Confirm that your email address mailbox is not full:</strong></p>
|
||||
<p>Your mailbox may have an email quota. And if email forwarding, do check both the email address originally sent to as well as the email address account being forwarded to.</p>
|
||||
<p> </p>
|
||||
<p><strong>3. Check your Junk folder:</strong></p>
|
||||
<p>If you find the email(s) from us in your Junk folder, do edit your spam settings so that all email from support@ayanova.com is allowed.</p>
|
||||
<p> </p>
|
||||
<p><strong>4. Issues with HotMail or AOL accounts:</strong></p>
|
||||
<p>If you have sent an email using a HotMail or AOL account (@@hotmail.com or @@aol.com), although we may receive it and have sent a reply, you may never receive our emails and we will never be advised that it was rejected by HotMail</p>
|
||||
<p>You can also check out these two URL links about why not to use a HotMail account if you actually want to receive email from other's that do not have a HotMail account:</p>
|
||||
<p><a href="http://www.theregister.com/2007/05/01/hotmail_friendly_fire/" target="_blank">http://www.theregister.com/2007/05/01/hotmail_friendly_fire/</a> </p>
|
||||
<p><a href="http://www.iis-aid.com/articles/iis_aid_news/are_hotmail_cutting_their_own_throat" target="_blank">http://www.iis-aid.com/articles/iis_aid_news/are_hotmail_cutting_their_own_throat</a> </p>
|
||||
<p> </p>
|
||||
<p><strong>5. Your SPAM settings:</strong></p>
|
||||
<p>Your email program or your ISP (Internet Service Provider) is using a spam filter that is filtering out all email from us, or certain email depending on the content.</p>
|
||||
<p>You may need to edit your email program and/or contact your ISP to allow all email from support@ayanova.com </p>
|
||||
<p>Once you have done this, either forward your previous email, or send a new email stating that you did not receive a reply due possibly to a spam filter, and we will resend the information.</p>
|
||||
<p>We are not made aware by your spam filter that the email has not been received by you. The only way is if you confirm the receipt, or contact us again.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h3>Can I phone someone or have someone phone me?</h3>
|
||||
<p>In order to be able to provide an affordable product for small business with fast technical support globally, we do not provide phone support.</p>
|
||||
<p>Please contact us via the online form above, or send us a direct email to support@ayanova.com and our North American support staff will respond promptly between 9:00AM and 5:00PM Pacific Standard Time (-8GMT/ UTC) Monday to Friday.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--start bottom container-->
|
||||
<div class="container text-center">
|
||||
<div class="row">
|
||||
<hr>
|
||||
<small><span>Ground Zero Tech-Works Inc., 05 - 3610 Christie Parkway Courtenay, BC V9N 9T6 Canada</span>
|
||||
<br>
|
||||
<span>Since 1999 AyaNova® is a registered trademark of Ground Zero Tech-Works Inc. in the United States and other countries.</span>
|
||||
<br>
|
||||
<span><a href="https://ayanova.com/license.htm">End User License Agreement</a></li> | <a href="https://ayanova.com/privacypolicy.htm">Privacy Policy</a></span></small>
|
||||
</div>
|
||||
</div>
|
||||
<!--end bottom container-->
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h3>If you have sent a question, but have not received a reply</h3>
|
||||
<p> </p>
|
||||
<p>We answer every email we receive promptly within business hours. Verify you used the correct email
|
||||
address and check your spam folder.</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<div class="row">
|
||||
<div class="col-sm-12 col-md-12">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-body">
|
||||
<h3>Can I phone someone or have someone phone me?</h3>
|
||||
<p>In order to be able to provide an affordable product for small business with fast technical support
|
||||
globally, we do not provide phone support.</p>
|
||||
<p>Please contact us via the online form above, or send us a direct email to support@ayanova.com and our
|
||||
North American support staff will respond promptly between 9:00AM and 5:00PM Pacific Standard Time (-8GMT/
|
||||
UTC) Monday to Friday.</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!--start bottom container-->
|
||||
<div class="container text-center">
|
||||
<div class="row">
|
||||
<hr>
|
||||
<small><span>Ground Zero Tech-Works Inc., 05 - 3610 Christie Parkway Courtenay, BC V9N 9T6 Canada</span>
|
||||
<br>
|
||||
<span>Since 1999 AyaNova® is a registered trademark of Ground Zero Tech-Works Inc. in the United States and
|
||||
other countries.</span>
|
||||
<br>
|
||||
<span><a href="https://ayanova.com/privacypolicy.htm">Privacy Policy</a></span></small>
|
||||
</div>
|
||||
</div>
|
||||
<!--end bottom container-->
|
||||
Reference in New Issue
Block a user