-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 937 Bytes
/
index.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
<!doctype html>
<html>
<title>
Scratchpad
</title>
<head>
<link rel="stylesheet" type="text/css" href="scratchpad.css"></link>
<script type="text/javascript" src="scratchpad.js"></script>
</head>
<body>
<div class="page_title">
Scratchpad
<div class="changed_marker" style="visibility: hidden">*</div>
</div>
<div class="main">
<div class="main_container">
<div class="items_pane">
</div>
<div class="contents_pane">
<input type="text" class="title" value="" tabindex="1" oninput="itemChanged()"/>
<textarea class="content" rows=15 tabindex="2" oninput="itemChanged()"></textarea>
<div class="buttons_pane">
<div class="button" onclick="deleteCurrentItem()">
Delete
</div>
<div class="button" onclick="newItem()">
New
</div>
</div>
</div>
</div>
</div>
</body>
</html>