-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackup.html
More file actions
23 lines (23 loc) · 812 Bytes
/
backup.html
File metadata and controls
23 lines (23 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html manifest = "ma.appcache">
<html>
<head>
<title>Backup</title>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
</head>
<body>
<button onclick=document.location='index.html'>назад и обновить</button>
<button onclick=del() style="color: #ff0000">удалить</button>
<p>
<textarea id=text rows=18 style="width: 100%"></textarea>
<button onclick=cle()>очистить</button>
<button onclick=imp()>импорт</button>
<button onclick=exp()>экспорт</button>
<button onclick=sel()>выделить</button>
<button onclick=copy()>скопировать в буфер</button>
</p>
<input type='file' onchange='openFile(event)'/>
</body>
</html>
<script src="backup.js"></script>