-
Notifications
You must be signed in to change notification settings - Fork 0
/
create.html
executable file
·83 lines (70 loc) · 2.65 KB
/
create.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Predictionary</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body onload="checkEdits()">
<div id="topbar">
<div id="TopSection">
<h1 id="sitename"><a href="#">Pre</a><span><a href="#">diction</a></span><a href="#">ary</a></h1>
<div id="topbarnav"> <span class="topnavitems"><a href="newuser.html">Register</a> | <a href="returninguser.html">Login </a></span><form action="search.html"><div class="searchform">
<label for="searchtxt">
Search Terms:
</label>
<input class="keywordfield" id="searchtxt"/>
<input type="submit" value="Search" />
</div> </form></div>
<div class="clear"></div>
<ul id="topmenu">
<li><a href="index.html">Home</a></li>
<li><a href="upload.html">Upload</a></li>
<li class="active"><a href="create.html">Create</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</div>
<!--<div id="wrap">
<div id="headershort">
<h2 class="subheader">Create</h2>
</div>-->
<div id="contents">
<div id="newfile">
<h2>New File - <span id="edit2" contenteditable="true">Unnamed</span><span></span>
<input type="button" value="Save" onclick="saveEdits()"/>
<script>
function saveEdits() {
var editElem = document.getElementById("edit2");
var userVersion = editElem.innerHTML;
localStorage.userEdits2 = userVersion;
}
function checkEdits() {
if(localStorage.userEdits2!=null)
document.getElementById("edit2").innerHTML = localStorage.userEdits2;
}
</script>
</h2>
<blockquote>
<TEXTAREA style="font-size: 12pt; important; font-family: Georgia" Name="content" ROWS= 60 COLS=100></TEXTAREA></center>
<p></p>
</blockquote>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<div id="footer">
<div id="footercontent">
<div id="copyright">© Predictionary | <a href="predictionary.net">predictionary.net</div>
</div>
</div>
<div id="credit">
<!-- Removing this link back to Ramblingsoul.com will be violation of the Creative Commons Attribution 3.0 Unported License, under which this template is released for download -->
<a href="http://ramblingsoul.com" title="Download High Quality CSS Templates">Free CSS Templates</a> by RamblingSoul.com
<!-- Copyright - Ramblingsoul.com -->
| Valid <a href="http://validator.w3.org/check?uri=referer">XHTML 1.0</a> | <a href="http://validator.w3.org/check?uri=referer"">CSS 2.0</a>
</div>
</body>
</html>