-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (94 loc) · 4.26 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
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DnD input Generator</title>
<link rel="stylesheet" href="/src/css/skeleton.css">
<link rel="stylesheet" href="/src/css/style.css">
<link rel="stylesheet" href="/src/css/icons.css">
<link rel="stylesheet" href="/src/css/anime.css" />
</head>
<body>
<nav id="nav">
<h6 id="logoText" class="animate__animated">DnD Form Generator</h6>
<ul>
<li> <a onclick="this.href='data:text/html;charset=UTF-8,'+encodeURIComponent(document.documentElement.outerHTML)"
download="Code.html">Download </a></li>
<li>Get Offline</li>
<li>Save Offline</li>
</ul>
</nav>
<div>
<div class="three columns menu-list" id="dragable-cont">
<h6 style="color: white;margin:0px;text-align:center ">Click to Add+</h6>
<div id="menu-list">
<div class="dragable-item" data-input-type="TextInput">
<h5>Text Input</h5>
<input type="text" disabled name="title" placeholder="Text">
</div>
<div class="dragable-item" data-input-type="NumberInput">
<h5>Number Input</h5>
<input type="number" disabled name="title" placeholder="Number">
</div>
<div class="dragable-item" data-input-type="EmailInput">
<h5>Email Input</h5>
<input type="email" disabled name="title" placeholder="Email">
</div>
<div class="dragable-item" data-input-type="TextInput">
<h5>Text Input</h5>
<input type="text" disabled name="title" placeholder="Text">
</div>
<div class="dragable-item" data-input-type="TextInput">
<h5>Number Input</h5>
<input type="number" disabled name="title" placeholder="Number">
</div>
<div class="dragable-item" data-input-type="TextInput">
<h5>Email Input</h5>
<input type="email" disabled name="title" placeholder="Email">
</div>
<div class="dragable-item" data-input-type="TextInput">
<h5>Text Input</h5>
<input type="text" disabled name="title" placeholder="Text">
</div>
<div class="dragable-item" data-input-type="TextInput">
<h5>Number Input</h5>
<input type="number" disabled name="title" placeholder="Number">
</div>
<div class="dragable-item" data-input-type="TextInput">
<h5>Email Input</h5>
<input type="email" disabled name="title" placeholder="Email">
</div>
</div>
</div>
<div class="nine columns main-site">
<div id="toolbar">
<h6>Toolbar</h6>
</div>
<div id="main-items">
<div class="card inputs-container animate__animated">
<span class="material-symbols-outlined gicons ">delete</span>
<input type="text" class="title" name="title" id placeholder="Title">
<input type="text" name="" placeholder="Text">
<span class="AdvOpt">Advance Options</span>
</div>
<div class="card inputs-container animate__animated">
<span class="material-symbols-outlined gicons">delete</span>
<input type="text" class="title" name="title" id placeholder="Title">
<input type="text" name="" placeholder="Text">
<span class="AdvOpt">Advance Options</span>
</div>
</div>
<br><br>
<button class="button submit-btn"> Save input </button>
</div>
</div>
<div>
<h5>Advance Options</h5>
<button> Add </button>
</div>
<script src="/src/js/sortable-js.js"></script>
<script type="module" src="/src/js/script.js"></script>
</body>
</html>