bigbiff | d006b30 | 2015-03-06 18:36:03 -0500 | [diff] [blame] | 1 | --- |
| 2 | layout: page |
| 3 | title: Contact Us |
| 4 | permalink: /contactus/ |
| 5 | --- |
| 6 | <script type="text/javascript"> |
| 7 | function validateForm() { |
| 8 | emailre = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/; |
| 9 | if (document.emailform.fname.value == "") { |
| 10 | alert("Please provide your first name."); |
| 11 | document.emailform.fname.focus(); |
| 12 | return false; |
| 13 | } |
| 14 | if (document.emailform.lname.value == "") { |
| 15 | alert("Please provide your last name."); |
| 16 | document.emailform.lname.focus(); |
| 17 | return false; |
| 18 | } |
| 19 | if (document.emailform.email.value == "" || !emailre.test(document.emailform.email.value)) { |
| 20 | alert("Please provide a valid email."); |
| 21 | document.emailform.email.focus(); |
| 22 | return false; |
| 23 | } |
| 24 | if (document.emailform.subject.value == "") { |
| 25 | alert("Please provide a subject line."); |
| 26 | document.emailform.subject.focus(); |
| 27 | return false; |
| 28 | } |
| 29 | if (document.emailform.emailtext.value == "") { |
| 30 | alert("Please provide email text."); |
| 31 | document.emailform.emailtext.focus(); |
| 32 | return false; |
| 33 | } |
| 34 | return true; |
| 35 | } |
| 36 | </script> |
| 37 | |
bigbiff bigbiff | 2c17b19 | 2016-08-25 18:30:58 -0400 | [diff] [blame] | 38 | <script src='https://www.google.com/recaptcha/api.js'></script> |
| 39 | |
bigbiff | d006b30 | 2015-03-06 18:36:03 -0500 | [diff] [blame] | 40 | <div class="home"> |
| 41 | <p class="text">Less than 1% of emails will receive a reply. The vast majority of emails that we receive could be answered by <a href="../FAQ/index.html">reading the FAQ</a> or searching on <a href="http://forum.xda-developers.com/">xda-developers forums</a> for the answer.</p> |
bigbiff | 0725dab | 2020-02-11 19:50:31 -0500 | [diff] [blame] | 42 | <p class="text">If you have truly found a bug, post it in our <a href="https://github.com/TeamWin/android_bootable_recovery/issues">Github issues log</a> instead of sending an email so we can better track the bug and fix it.</p> |
bigbiff | d006b30 | 2015-03-06 18:36:03 -0500 | [diff] [blame] | 43 | <p class="text">If you are a company interested in a partnership or a developer who is interested in porting or working on TWRP, you are the 1% who will likely get a reply. Thanks for your consideration.</p> |
| 44 | <form action="/contactus/submit.php" onSubmit="return validateForm();" method="POST" id="emailform" name="emailform"> |
| 45 | First Name:<br/> |
| 46 | <input type="text" name="fname" id="fname"/><br/> |
| 47 | Last Name:<br/> |
| 48 | <input type="text" name="lname" id="lname"/><br/> |
| 49 | Email:<br/> |
| 50 | <input type="text" name="email" id="email"/><br/> |
| 51 | Subject:<br/> |
| 52 | <input type="text" name="subject" id="subject"/><br/> |
| 53 | Message:<br/> |
| 54 | <textarea rows="10" cols="50" name="emailtext" id="emailtext" form="emailform"></textarea><br/> |
| 55 | <input type="submit" value="Submit"/> |
bigbiff bigbiff | 9c36a39 | 2016-08-25 21:08:44 -0400 | [diff] [blame] | 56 | <div class="g-recaptcha" data-sitekey="6LeRaBoTAAAAAIuSXafi3ASaZxnzcaofeOTG8hbj"></div> |
bigbiff | d006b30 | 2015-03-06 18:36:03 -0500 | [diff] [blame] | 57 | </form> |
| 58 | </div> |
bigbiff bigbiff | 2c17b19 | 2016-08-25 18:30:58 -0400 | [diff] [blame] | 59 | |