-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.html.working
70 lines (60 loc) · 1.24 KB
/
create.html.working
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
<!DOCTYPE html>
<html>
<head>
<title>DockerfileForge</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
padding: 20px;
}
h1 {
margin: 0;
font-size: 24px;
}
.button-container {
display: flex;
justify-content: center;
margin-top: 20px;
}
.button {
margin: 0 10px;
padding: 10px 20px;
background-color: #333;
color: #fff;
text-decoration: none;
border: none;
cursor: pointer;
font-size: 16px;
}
.button:hover {
background-color: #555;
}
.content {
padding: 20px;
}
</style>
</head>
<body>
<header>
<h1>DockerfileForge</h1>
</header>
<div class="button-container">
<a class="button" href="addedit/index.html">Edit Apps</a>
<a class="button" href="create.html">Create Dockerfile</a>
<a class="button" href="docker.html">Add App</a>
<a class="button" href="index.html">Home</a>
<a class="button" href="search.html">Search (WiP)</a>
</div>
<div id="app-container"></div>
<pre id="config-output"></pre>
<script src="script.js"></script>
</p>
</div>
</body>
</html>