-
Notifications
You must be signed in to change notification settings - Fork 0
/
thanks.html
25 lines (25 loc) · 1.12 KB
/
thanks.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" >
<title>Thank you!</title>
<link rel="stylesheet" type="text/css" href="https://yegor256.github.io/tacit/tacit.min.css"/>
<script type="text/javascript">
function return_to_story() {
var url = location.href;
if (/\?/.test(url) == true) {
var args = /\?(\d+)/.exec(url)[1];
var redir = document.getElementById("redirect")
redir.setAttribute("onclick", "window.location='https://global-asp.github.io/translator/?" + args + "'");
}
}
</script>
</head>
<body onload="return_to_story()">
<h1>Your translation was submitted successfully.</h1>
<br>
<p>Thanks for contributing to the <a href="https://global-asp.github.io/">Global African Storybook Project</a>!</p>
<p>Press the button below to return to the website and <a href="https://global-asp.github.io/translator">translate another story</a>.</p>
<input id="redirect" type="button" onclick="window.location='https://global-asp.github.io/translator'" value="Go back">
</body>
</html>