-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathinputDialog.html
More file actions
25 lines (25 loc) · 1.17 KB
/
Copy pathinputDialog.html
File metadata and controls
25 lines (25 loc) · 1.17 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline' https://cdnjs.cloudflare.com; font-src https://cdnjs.cloudflare.com;">
<title>Input Dialog</title>
<link rel="stylesheet" href="./styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body class="dialog-body">
<h1 id="dialog-message"></h1>
<input type="text" id="dialog-input" placeholder="Instance Name">
<input type="text" id="description-input" placeholder="Optional Description" style="display: none;">
<div class="icon-picker-container">
<button id="pick-icon-button" class="secondary"><i class="fas fa-rocket"></i> Pick Icon</button>
<div id="selected-icon-preview"></div>
</div>
<select id="version-select" style="display: none;"></select>
<div class="buttons">
<button id="ok-button" class="primary">OK</button>
<button id="cancel-button" class="secondary">Cancel</button>
</div>
<script src="./inputDialog-renderer.js"></script>
</body>
</html>