-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreateFile.html
35 lines (30 loc) · 1.35 KB
/
createFile.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
<html>
<head>
<title>Control 1.0</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="title halfTitle" style="font-family: 'SegoeUILight';">Control</h1><h5 class="title halfTitle">1.0</h5>
<h5 class="title">Command Name</h5>
<input type="text" class="searchBar" id="commandName" autofocus>
<h5 class="title">FilePath</h5>
<input type="text" class="searchBar" id="filePath" style="width: calc(100% - 58px); margin-right: 4px;">
<div class="twoButtonsMain">
<button onclick="chooseFile()" class="twoButtonsChild twoButtonsChild1">
<img src="./images/file.png">
</button>
<button onclick="chooseFolder()" class="twoButtonsChild twoButtonsChild2">
<img src="./images/folder.png">
</button>
<img src="./images/files.png" style="width: 60%; height:60%; padding-top: 9px;">
</div>
<h5 class="title">Additional Parameters</h5>
<input type="text" class="searchBar" id="additionalParameters">
<div id="additionalContent" style="margin-bottom: 20px; width: 100%;">
</div>
<script type="text/javascript" src="createFile.js"></script>
<script type="text/javascript" src="components/createFile-git.js"></script>
<button onclick="saveEntry()" style="margin-right: 4px;">Save</button>
<button onclick="goToIndex()">Quit</button>
</body>
</html>