-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwindow.html
More file actions
29 lines (29 loc) · 1.12 KB
/
window.html
File metadata and controls
29 lines (29 loc) · 1.12 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
26
27
28
29
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<title>Ultraviolet</title>
<link rel="stylesheet" href="css/scrollbar.css">
<link rel="stylesheet" href="window.css">
<script data-main="window" src="scripts/require.js"></script>
</head>
<body>
<img id="image" />
<div id="darken"></div>
<input type="file" accept="image/*" id="file" />
<div id="dropzone" title="Drag and drop a picture here, or click here to browse for a picture.">
<span id="tip">Drop a picture or click to choose one</span>
<span id="name">Ultraviolet</span>
</div>
<textarea id="text" type="text" tabindex="1" placeholder="Enter a message to hide" autofocus></textarea>
<section id="buttons">
<button class="button" id="buttons-hide" tabindex="2">Hide message</button>
</section>
<div id="menulist">
<button class="menu" id="close"></button>
<button class="menu" id="save"></button>
<button class="menu about_bg" id="about"></button>
</div>
</body>
</html>