-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathcontact.html
76 lines (76 loc) · 5.53 KB
/
contact.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html>
<head>
<script src="js/loadscripts.js"></script>
</head>
<body>
<div id="menu"></div>
<div id="header"></div>
<h4>IMPORTANT: PLEASE READ</h4>
<p>This system has been implemented due my inbox being destroyed by an influx of tech support and review requests. Between emails, video comments and unsolicited Facebook messages I could easily do tech support full time, which means no time left to actually make videos. I feel it’s better for me to help many people with a video than to spend significant time trying to help individuals one on one.</p>
<p>With this in mind, please consider these guidelines before trying to contact me:</p>
<ul>
<li>I don’t offer personal technical support, paid or otherwise, to the general public, Patrons, anyone. Please do not send such requests, you will not receive a reply.</li>
<li>Feel free to request or suggest a video, but there are several boxes that must be ticked for me to make a video. Just because a topic is important to one person, there is no guarantee it will appeal to or be helpful for a wider audience. If I receive frequent requests from a variety of people on a given topic, the chances of a video increase.</li>
<li>I don’t do any paid/sponsored videos. This includes manufacturers of channel relevant products making payment or unrelated sponsored segements (VPNs, etc). Independence is key in delivering an unbiased and honest opinion. Products are often provided for free for review/testing and this is communicated in the video and the video description. Any contact offering payment or financial incentive will be ignored.</li>
<li>I am not interested in joining any partnership programs for ‘influencers’/content creators. I believe in creating the best videos I can and letting the channel grow naturally.</li>
<li>Please no suggestions/queries related to this website. Please post in the GitHub <a href="https://github.com/teachingtechYT/teachingtechYT.github.io/issues" target="_blank">issues</a> section and make sure to read the <a href="https://github.com/teachingtechYT/teachingtechYT.github.io/issues/323" target="_blank">pinned readme</a>.</li>
<li>In requesting a review, please be aware of my review policy. This document has been created for transparency over time frames and expectations, and to firmly establish my loyalty is to my viewers above all else. <a href="reviewpolicy.html"><b>Review Policy</b></a></li>
<li>Please try to give concrete details about your product or service. Too often I receive a vague request for a collaboration or review with no actual information. Please link to text/images/video that communicate your product adequately.</li>
<li>I am much more likely to agree to a review if the product or service is innovative or appeals to a wider audience. Generally, I am not particularly interested in covering a product that is simply a cut price clone of an established product. In my opinion the 3D printer market is already saturated with 'me too' products. See a video on this below:</li>
</ul>
<iframe width="480" height="360" src="https://www.youtube.com/embed/4dYStVwTfFE" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<h4>Contact Form</h4>
<form id="contactForm" action="https://docs.google.com/forms/d/e/1FAIpQLSdo_4cplv-H96HnC1ctPHh1RhDOSzRl70SXKq6BHCWt3dPLSg/formResponse?" target="hidden_iframe" onsubmit="submitted=true;">
<table class="contact">
<tr>
<td style="width:15%">Nature of enquiry:</td>
<td><select name="entry.989224142" id="entry.989224142">
<option value="Review">Product review</option>
<option value="Request">Video request</option>
<option value="TT Racing">TT Racing</option>
<option value="Misc">Miscellaneous</option>
</select></td>
</tr>
<tr>
<td>Company:</td>
<td><input type="text" name="entry.486219494" id="entry.486219494"></input></td>
</tr>
<tr>
<td>Name:</td>
<td><input type="text" name="entry.958929823" id="entry.958929823" required></input></td>
</tr>
<tr>
<td>Email:</td>
<td><input type="email" name="entry.1317980981" id="entry.1317980981" required></input></td>
</tr>
<tr>
<td>Subject:</td>
<td><input type="text" name="entry.963562293" id="entry.963562293" required></input></td>
</tr>
<tr>
<td>Message:</td>
<td><textarea name="entry.431382031" id="entry.431382031" style="width:90%; height: 20vh;" required></textarea></td>
</tr>
<tr>
<td colspan="2"><input type="submit" value="Submit"></td>
</tr>
</table>
</form>
<iframe name="hidden_iframe" id="hidden_iframe" style="display:none;" onload="if(submitted) {}"></iframe>
<script type="text/javascript">
var submitted=false;
$('#contactForm').on('submit', function(e) {
$('#contactForm *').fadeOut(500);
$('#contactForm').prepend('<p>Your enquiry has been sent.</p>');
});
</script>
<div id="up"></div>
<div id="footer"></div>
</body>
<script>
var pageName = "Contact";
var pageTitle="Contact Teaching Tech";
</script>
<script src="js/dynamic.js"></script>
<html>