-
Notifications
You must be signed in to change notification settings - Fork 26
/
feedback.html
50 lines (48 loc) · 2 KB
/
feedback.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
<html lang="en">
<head>
<title>Contact Us</title>
<script type="text/javascript" src="assets/includes/head.js"></script>
<link rel="canonical" href="feedback.html">
<meta name='description' content='A site for kids, by kids, to help keep kids busy, informed, and content while stuck at home.'>
</head>
<body>
<script type="text/javascript" src="assets/includes/header.js"></script>
<br><br>
<br><br>
<center>
<hr>
<br>
<h2>Feedback</h2>
<p class="ml-2 mr-2">Let us know here if you have any feedback for improvements to this website. you can also submit it by emailing us at <a href="mailto:[email protected]" class="text-dark">[email protected]</a></p>
<br>
<form name="feedbackform" onsubmit="return validatefeedback();" method="POST" action="https://ilan-not-elon.com/Covid-Kids/feedback.php">
<textarea id="input" type="text" name="message" placeholder="Messsage" class="textarea"></textarea>
<input value="Submit" type="submit" class="btn btn-light mt-2"></input>
</form>
<hr>
<br>
<h2>Submissions</h2>
<p>All artwork and articles on this site are by kids. If you have any kid-made artwork or articles please email it to us at <a href="mailto:[email protected]" class="text-dark">[email protected]</a></p>
<br>
<hr>
<br>
<h2>Anything Else</h2>
<p>If your message does not fit into one of the above catagories please email us at <a href="mailto:[email protected]" class="text-dark">[email protected]</a></p>
<br>
<hr>
</center>
<script>
function validatefeedback() {
let inputText = document.forms["feedbackform"]["message"].value;
if (inputText != "") {
alert("Thank You For Contacting Us.");
return true;
}
else {
alert("Please Write Something Before Submitting.");
return false;
}
}
</script>
</body>
</html>