-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload.html
More file actions
56 lines (50 loc) · 1.22 KB
/
upload.html
File metadata and controls
56 lines (50 loc) · 1.22 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TurtleMod Upload</title>
<style>
body {
background: #f4f7f4;
font-family: "Inter", sans-serif;
margin: 0;
padding: 20px;
color: #1a1a1a;
text-align: center;
}
#box {
background: #e8f7eb;
padding: 30px 40px;
border-radius: 12px;
box-shadow: 0 3px 10px rgba(0,0,0,0.08);
display: inline-block;
margin-top: 80px;
}
a {
color: #1f7a3a;
font-weight: bold;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div id="box">
<h1>Redirecting…</h1>
<p>
If you are not redirected,
<a id="manual" href="https://turtlemod-team.github.io/TurlteMod-Editor/upload.html">
click here
</a>.
</p>
</div>
<script>
const url = "https://turtlemod-team.github.io/TurlteMod-Editor/upload.html";
document.getElementById("manual").href = url;
window.location.href = url;
</script>
</body>
</html>