-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
44 lines (37 loc) · 1.29 KB
/
settings.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
<html>
<head>
<link rel="stylesheet" href="foundation.css">
</head>
<body>
<form>
<div class="row">
<div class="medium-12 columns">
<h1>Crucidea Settings</h1>
</div>
</div>
<div class="row">
<div class="medium-12 columns">
<label>Select Idea recentProjects.xml file.<br>For detail see <a id="ideaFoldersPageLink">here</a>.
<span class="input-group">
<input class="input-group-field" type="text" id="destinationInput" placeholder="/config/options/recentProjects.xml">
<span class="input-group-button">
<button class="button" id="openFileButton">Choose File</button>
</span>
</span>
</label>
</div>
</div>
<div class="row">
<div class="medium-6 columns">
<button class="large expanded button" id="restoreDefaultButton">Restore Default</button>
</div>
<div class="medium-6 columns">
<button class="large expanded button" id="saveButton">Save</button>
</div>
</div>
</form>
</body>
<script>
require('./renderer.js')
</script>
</html>