forked from SevenworksDev/tProxy
-
Notifications
You must be signed in to change notification settings - Fork 0
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
twtg93
authored
Mar 16, 2022
1 parent
64ef67a
commit 0ea45ab
Showing
1 changed file
with
13 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<title>Google Classroom</title> | ||
<link rel="icon" type="image/x-icon" href="./icon.png"> | ||
<script> | ||
function getSite(){ | ||
var frame=document.querySelector('iframe'); | ||
frame.src="/web/_" + btoa(document.querySelector('input').value) + '_/'; | ||
} | ||
</script> | ||
<div style="position: fixed; right: 39%; z-index: 9999999; background-color: white;"> | ||
<input style="position: relative; z-index: 9999999;"> | ||
<button onclick="getSite();" style="position: relative; z-index: 9999999;">Go</button> | ||
</div> | ||
<iframe style="position:fixed; bottom:0%; left:0; right:0; width:100%; height:100%; border:none; margin:0; padding:0; overflow:hidden; z-index: 0;"></iframe> |