-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_element.html
More file actions
49 lines (29 loc) · 1.5 KB
/
create_element.html
File metadata and controls
49 lines (29 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="resources/css/create_element.css">
<link href="https://fonts.googleapis.com/css?family=Lato:100,300,300i,400,700" rel="stylesheet">
<title>Element Creation Form</title>
</head>
<body>
<header>
<div class="wrapper">
<form action="" method="post" id="new_element_form">
<fieldset>
<h1 id="headline">Creation Form</h1>
<input class="type-default" id="type" type="text" name="Type of Element" placeholder="" />
<input id="name" type="text" name="Name of Element" placeholder="Name of the element" />
<input id="x" type="text" name="loc_x" placeholder="Location x" />
<input id="y" type="text" name="loc_y" placeholder="Location y" />
<h2>Write here more attributes in JSON format</h2>
<textarea id="more" name="message" placeholder="More Attributes to the Page">{}</textarea>
<input type="button" id="submit_btn" class="btn submit-btn" value="" />
<input type="button" id="reset_btn" class="btn reset-btn" value="Reset Form" />
<input type="button" id="cancel_btn" class="btn cancel-btn" value="Cancel" />
</fieldset>
</form>
</div>
</header>
<script src="create_element.bundle.js"></script>
</body>
</html>