forked from electron/electron-quick-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (58 loc) · 2.07 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta http-equiv="Content-Security-Policy"
content="default-src *; script-src 'self'; style-src 'self' 'unsafe-inline'">
<link href="./static/css/styles.css" rel="stylesheet">
<link rel="stylesheet" href="./node_modules/materialize-css/dist/css/materialize.min.css">
<title>Hello World!</title>
</head>
<body>
<h2>UPLOADER</h2>
<div class="__container">
<div class="__card">
<form name="pictureForm" id="pictureForm">
<div class="input-field col s12">
<select name="workorder_id" id="workorder_id">
<option value="" disabled selected>Choose workorder</option>
</select>
<label>Workorders</label>
</div>
<div class="input-field col s12">
<select name="windblade_id" id="windblade_id">
<option value="" disabled selected>Choose blade</option>
</select>
<label>Windblade</label>
</div>
<div class="input-field col s12">
<select name="region">
<option value="" disabled selected>Choose area</option>
<option value="1">LE</option>
<option value="2">TE</option>
<option value="3">CE</option>
</select>
<label>Area</label>
</div>
<div class="file-field input-field">
<div class="btn">
<span>File</span>
<input id="pictures" name="pictures[]" type="file" multiple>
</div>
<div class="file-path-wrapper">
<input class="file-path validate" type="text">
</div>
</div>
<div>
<button class="waves-effect waves-light btn">upload</button>
</div>
</form>
</div>
</div>
<!-- You can also require other files to run in this process -->
<script src="./node_modules/materialize-css/dist/js/materialize.min.js"></script>
<script type="module" src="./static/js/custom.js"></script>
<script src="./renderer.js"></script>
</body>
</html>