-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload.html
101 lines (89 loc) · 3.99 KB
/
upload.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="/style/upload.css">
<title>Uploading to RedJacket Web | By MBD DEV</title>
<script src="https://kit.fontawesome.com/0ca27f8db1.js" crossorigin="anonymous"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="https://redjacket-web.cdn.madebydanny.uk/MBDTeamLogobyDesigner.png">
</head>
<body>
<div id="navbar">
<a class="active" href="index.html" id="logo">RedJacket Web</a>
<a href="https://dev.madebydanny.uk">By MBD DEV</a>
<div id="navbar-right">
<a href="about.html"><i class="fa-solid fa-user"></i>About</a>
<a href="templates.html"><i class="fa-solid fa-table-list"></i>Templates</a>
<a class="active" href="#"><i class="fa-solid fa-upload"></i>Upload</a>
<a href="#"> | </a>
<a href="search.html"><i class="fa-solid fa-magnifying-glass"></i></a>
<a onclick="topFunction()" id="myBtn" title="Go to top"><i class="fa-solid fa-arrow-up"></i></a>
<a href="info.html"><i class="fa-solid fa-info"></i></a>
<a onclick="myFunction1()" id="myBtn" title="Dark Mode"><i class="fa-solid fa-circle-half-stroke"></i></a>
<a href="#"> | </a>
<a href="info.html"><i class="fa-brands fa-reddit"></i></a>
<a href="info.html"><i class="fa-brands fa-youtube"></i></a>
<a href="info.html"><i class="fa-brands fa-twitch"></i></a>
<a href="info.html"><i class="fa-brands fa-github"></i></a>
</div>
</div>
<hr>
<div class="row">
<div class="column">
<div class="red">
<h2 id="upload">Upload Your own Template</h2>
<p>MBD DEV lets you add your own Template for free. <br>But your Template must meet the following:</p>
<p>#1 Your code must follow the GitHub community guidelines and terms. And MBD DEV Code guidelines. <br>
#2 Your code must be public on GitHub<br>
#3 You must have a file named "index.html" and CSS<br><b>MBD DEV guidelines</b><br> #1 No profanity There will not be any profanity as text on the overview and website page.
<br>#2 No "Bad" code your code will never steal the user data and information and be sold.
<br>#3 13+ there will not be any Nude photos and video on your site.
<br>Violating GitHub and MBD DEV Tearms and community guidelines will result in a report to your GitHub repo and Account and a Ban on all MBD Team services and social media. </p>
</div>
</div>
<div class="column66">
<div class="card">
<h2>Once you have read the Guidelines for uploading your own template you may start.</h2>
<p>Embed here</p>
</div>
</div>
</div>
<div class="floater">
<p>Powerd By MBD CDN | MBD DEV | Backed By Cloudflare</p>
</div>
<div class="github">
<script>
fetch('https://api.github.com/repos/therealfuntimeswithdanny/RedJacket-Web')
.then(response => response.json())
.then(data => {
const lastUpdated = new Date(data.updated_at).toLocaleString();
document.getElementById('repoInfo').innerText = `Last Updated From Github Pages at: ${lastUpdated}`;
});
</script>
</div>
<script>
// When the user scrolls down 80px from the top of the document, resize the navbar's padding and the logo's font size
window.onscroll = function() {scrollFunction()};
function scrollFunction() {
if (document.body.scrollTop > 80 || document.documentElement.scrollTop > 80) {
document.getElementById("navbar").style.padding = "30px 10px";
document.getElementById("logo").style.fontSize = "25px";
} else {
document.getElementById("navbar").style.padding = "80px 10px";
document.getElementById("logo").style.fontSize = "35px";
}
}
// Get the button
let mybutton = document.getElementById("myBtn");
// When the user clicks on the button, scroll to the top of the document
function topFunction() {
document.body.scrollTop = 0;
document.documentElement.scrollTop = 0;
}
function myFunction1() {
var element = document.body;
element.classList.toggle("dark-mode");
}
</script>
</body>
</html>