-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (45 loc) · 1.33 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Getting Started</title>
<style>
#welcome {
text-align: center;
}
#empty {
text-align: center;
}
#notempty {
text-align: center;
}
</style>
</head>
<body>
<script
src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"
></script>
<h1 id="welcome">
Welcome
</h1>
<div id="empty" style="display: none;">
<h1>
there were no systems found in the systems folder. type what you want your system to
be named click the button below to create one
</h1>
<div>
<form action="mkdir.php" method="post">
<input type="text" name="foldername" id="foldername" value="FolderName" />
<input type="submit" value="submit" />
</form>
</div>
</div>
<div id="notempty" style="display: none;">
<h1>
Systems found select the one you want to use.
</h1>
</div>
</body>
</html>