-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (33 loc) · 979 Bytes
/
index.html
File metadata and controls
43 lines (33 loc) · 979 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<!doctype html>
<html>
<head>
<title>EveryPad</title>
<link rel="stylesheet" href="app.min.css">
<script src="jquery.js"></script>
<script src="script.js"></script>
</head>
<body>
<header>
<h1>EveryPad </h1>
<h3>Save code to DontPad direct your browser!</h3>
</header>
<section class="content">
<div id="savetobox">
<div class="textosave">Saved to:</div>
<div id="saveto"></div>
</div>
<button id="optbt" class="btn-classic">Options</button>
<div id="options">
<input type="text" id="link" placeholder="DontPad Link" value="" autocomplete="off"> <span
style="color: #ff0000;">(Optional)</span><br>
<br>
<input type="text" id="getdata" placeholder="Open Saved" value="" autocomplete="off"> <span
style="color: #ff0000;">(Optional)</span><br>
</div>
<div id="textbox">
<textarea id="codepad"></textarea>
</div>
<div id="response"></div>
</section>
</body>
</html>