-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprompt.html
More file actions
24 lines (24 loc) · 606 Bytes
/
prompt.html
File metadata and controls
24 lines (24 loc) · 606 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
<!DOCTYPE html>
<html lang="en-US">
<head>
<link href="common.css" rel="stylesheet" type="text/css"/>
<link href="prompt.css" rel="stylesheet" type="text/css"/>
<meta charset="UTF-8"/>
<title id="title"></title>
</head>
<body>
<label for="textbox" id="prompt_label"></label>
<input type="text" id="textbox" />
<table id="button_table">
<tr>
<td>
<button id="ok" class="button">OK</button>
</td>
<td>
<button id="cancel" class="button">Cancel</button>
</td>
</tr>
</table>
<script src="src/prompt.js"></script>
</body>
</html>