-
Notifications
You must be signed in to change notification settings - Fork 0
/
show-data.html
91 lines (82 loc) · 3.04 KB
/
show-data.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<link rel="shortcut icon" href="./assets/images/logo.ico" type="image/x-icon">
<link rel="stylesheet" href="./assets/styles/design3.css">
<title>Feedback Sent</title>
</head>
<body>
<header>
<figure class="logo">
<a href="./index.html"><img src="./assets/images/logo-mighty-ducks-01.png" alt="logo"></a>
</figure>
<nav>
<a href="./index.html">Home</a>
<a href="./about.html">About</a>
<a href="./contact.html">Contact</a>
<a href="./rules.html">Rules</a>
<a href="./game-info.html">Game Information</a>
<a href="registration.html">Registration</a>
</nav>
</header>
<div class="subtitle">
<h2>The following information has been sent as your</h2>
</div>
<main>
<table class="sh-data-tb">
<tr>
<th>Form Field</th>
<th>Field Value</th>
</tr>
<script language="javascript">
var args = location.search.substr(1).split('&');
for (var i = 0; i < args.length; ++i) {
var parts = args[i].split('=');
if (parts != null) {
var field = parts[0];
var value = parts[1];
if (value == null) {
value = "null"
}
else {
value = '"' + unescape(value.replace(/\+/g, ' ')) + '"';
}
document.writeln('<tr><td align="center">' + field + '</td>');
document.writeln('<td align="center">' + value + '</td></tr>');
}
}
</script>
<noscript>
<tr>
<td>
<p>You need to turn on Javascript in your browser.</p>
<p>In Microsoft Internet Explorer 4 or greater:</p>
<ul>
<li>From the "Tools" menu (in IE 4, it's the "View" menu), select "Internet Options".</li>
<li>Click on the "Security" tab.</li>
<li>Click on the "Custom Level" button. (In IE 4, select "Custom"
and then click on "Settings...".)</li>
<li>Under "Active scripting" make sure "Enable" is selected.</li>
</ul>
<p>In Netscape version 4 or greater:</p>
<ul>
<li>From the <b>Edit</b> menu, select <b>Preferences</b>.</li>
<li>In the <b>Category</b> list on the left, click on the word "Advanced".</li>
<li>In the panel on the right, make sure "Enable JavaScript" is checked.</li>
<li>Click the <b>OK</b> button.</li>
</ul>
</td>
</tr>
</noscript>
</table>
</main>
</body>
</html>