blob: 0ff442a901cb140442dedf41a8df97fe7c89b42f [file] [log] [blame]
bigbiffd006b302015-03-06 18:36:03 -05001---
2layout: page
3title: Contact Us
4permalink: /contactus/
5---
6<script type="text/javascript">
7function 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 bigbiff2c17b192016-08-25 18:30:58 -040038<script src='https://www.google.com/recaptcha/api.js'></script>
39
bigbiffd006b302015-03-06 18:36:03 -050040<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>
42<p class="text">If you have truly found a bug, post it in our <a href="https://github.com/TeamWin/Team-Win-Recovery-Project/issues">Github issues log</a> instead of sending an email so we can better track the bug and fix it.</p>
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">
45First Name:<br/>
46<input type="text" name="fname" id="fname"/><br/>
47Last Name:<br/>
48<input type="text" name="lname" id="lname"/><br/>
49Email:<br/>
50<input type="text" name="email" id="email"/><br/>
51Subject:<br/>
52<input type="text" name="subject" id="subject"/><br/>
53Message:<br/>
54<textarea rows="10" cols="50" name="emailtext" id="emailtext" form="emailform"></textarea><br/>
55<input type="submit" value="Submit"/>
bigbiff bigbiff9c36a392016-08-25 21:08:44 -040056<div class="g-recaptcha" data-sitekey="6LeRaBoTAAAAAIuSXafi3ASaZxnzcaofeOTG8hbj"></div>
bigbiffd006b302015-03-06 18:36:03 -050057</form>
58</div>
bigbiff bigbiff2c17b192016-08-25 18:30:58 -040059