-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
74 lines (68 loc) · 1.5 KB
/
index.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
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
html, body, form{
height: 100%;
display: flex;
align-items: center;
justify-content:center;
flex-direction: column;
font-family: 'Roboto', sans-serif;
background-color: #111111;
color:white;
text-align: center;
vetical-align: center;
font-size: 20px;
}
input[type="text"]{
outline: none;
width: 512px;background-color: #222222;
border-radius:15px;
border: none;
color: white;
padding: 10px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
input[type="submit"]{
background-color: #222222;
margin-top: 1rem;
border-radius:15px;
border: none;
color: white;
padding: 10px 15px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #000080;
color: white;
text-align: center;
padding: 3px;
}
</style>
<form onsubmit="unblock()">
<h1>Marine Jumbo Proxy</h1>
<input id="input" type="text">
<input type="submit" value="UNBLOCK NOW!"></input>
</input>
</form>
<div class="footer">
<span>© 2021 theooofficial</span>
</div>
<script defer>
function unblock(){
let url = document.getElementById("input").value
console.log(url)
var win = window.open("https://translate.google.com/translate?sl=auto&tl=en&u=" + url, '_blank');
win.focus();
console.log(window.location)
}
</script></bod