Skip to content

Commit 747d544

Browse files
committed
feat: Updated the feedback() function in the terminal
- It redirects to the feedback form of Month of MERN week 0
1 parent 88c9a31 commit 747d544

1 file changed

Lines changed: 18 additions & 14 deletions

File tree

feedback/index.html

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
1-
<!DOCTYPE HTML>
2-
<html lang="en-US">
3-
<head>
4-
<meta charset="UTF-8">
5-
<meta http-equiv="refresh" content="1; url=https://goo.gl/forms/EvSb8o5ZuNi62Hqs2">
6-
<script type="text/javascript">
7-
window.location.href = "https://goo.gl/forms/EvSb8o5ZuNi62Hqs2"
8-
</script>
9-
<title>KJSCE Codecell Feedback</title>
10-
</head>
11-
<body>
12-
<!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
13-
If you are not redirected automatically, follow this <a href='https://goo.gl/forms/EvSb8o5ZuNi62Hqs2'>link</a>.
14-
</body>
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8" />
6+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
7+
<title>Redirecting to Feedback Form</title>
8+
<script>
9+
window.location.replace("https://docs.google.com/forms/d/e/1FAIpQLSce-xAXWtK5Ql8JvGRBX91lNsjDNH8MYW-BH3rIXeHcAW3-VQ/viewform?usp=sf_link");
10+
</script>
11+
</head>
12+
13+
<body>
14+
<!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
15+
If you are not redirected automatically, follow this <a
16+
href='https://docs.google.com/forms/d/e/1FAIpQLSce-xAXWtK5Ql8JvGRBX91lNsjDNH8MYW-BH3rIXeHcAW3-VQ/viewform?usp=sf_link'>link</a>.
17+
</body>
18+
1519
</html>

0 commit comments

Comments
 (0)