-
-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
40 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -111,8 +111,6 @@ dist | |
|
||
config/* | ||
test-cookies.json | ||
test.html | ||
test.png | ||
test2.html | ||
|
||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charSet="utf-8" /> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | ||
<title>epicgames-freegames-node test page</title> | ||
<meta name="description" content="Test page for epicgames-freegames-node" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="theme-color" content="#202020" /> | ||
<style> | ||
body { | ||
font-family: sans-serif; | ||
text-align: center; | ||
color: white; | ||
background-color: rgb(32, 32, 32); | ||
} | ||
|
||
#complete { | ||
display: none; | ||
} | ||
|
||
#complete:target { | ||
display: block; | ||
} | ||
</style> | ||
</head> | ||
|
||
<body> | ||
<h1>epicgames-freegames-node test page</h1> | ||
<p>If you can see this, everything is working! When a captcha is presented, you will recieve a notification similar | ||
to this one.</p> | ||
<h2>Click the button below to complete the test.</h2> | ||
<a href="#complete"><button>Close page</button></a> | ||
|
||
<p id="complete">Complete</p> | ||
</body> | ||
|
||
</html> |