forked from peterfreeman/electron-osx-prompt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprompt.html
More file actions
28 lines (25 loc) · 852 Bytes
/
prompt.html
File metadata and controls
28 lines (25 loc) · 852 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./photon.css">
<link rel="stylesheet" href="./prompt.css">
<script src="./prompt.js"></script>
</head>
<body>
<div id="header"></div>
<div class="prompt-content">
<div class="image-container">
<img id="prompt-img">
</div>
<div class="form-control-input-container">
<div id="label" class="form-control-label"></div>
<input type="text" id="input" class="form-control-text" onkeypress="enter(event)" required>
</div>
</div>
<div class="preferences-form-actions">
<button type="submit" class="btn btn-default" onclick="Cancel()">Cancel</button>
<button type="submit" class="btn btn-primary" onclick="Ok()">OK</button>
</div>
</body>
</html>