-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcreate.html
More file actions
52 lines (47 loc) · 1.92 KB
/
create.html
File metadata and controls
52 lines (47 loc) · 1.92 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>CodersMod - Create Project</title>
<link rel="icon" href="favicon.ico" />
<link rel="stylesheet" href="styles.css" />
<link
href="https://fonts.googleapis.com/css2?family=Inter&display=swap"
rel="stylesheet"
/>
</head>
<body>
<nav>
<a href="/"><h3>CodersMod</h3></a>
<a href="/create.html"><span class="link-btn">Create</span></a>
<a href="https://github.com/TheRandomDevBro/CodersMod/issues"><span class="link-btn">Suggest Project</span></a>
<a href="https://github.com/TheRandomDevBro/CodersMod"><span class="link-btn">GitHub</span></a>
</nav>
<header>
<h1>CodersMod</h1>
</header>
<main>
<p>Create a new project</p>
<div class="container">
<form onsubmit="event.preventDefault(); window.location.href = document.getElementById('project-type').value;">
<select name="project-type" id="project-type">
<option value="https://scratch.mit.edu/projects/editor/">Scratch</option>
<option value="https://turbowarp.org/editor">TurboWarp</option>
<option value="https://studio.penguinmod.com/editor.html">PenguinMod</option>
<option value="https://snail-ide.js.org/editor.html">Snail IDE</option>
<option value="https://librekitten.org/editor.html">LibreKitten</option>
<option value="https://sheeptester.github.io/scratch-gui/index.html">E羊icques</option>
<option value="https://www.adacraft.org/studio/">Adacraft</option>
</select>
<button type="submit">Create</button>
</form>
</div>
</main>
<footer>
<p>© 2026 CodersMod</p>
</footer>
<script src="script.js"></script>
</body>
</html>