-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
58 lines (44 loc) · 1.09 KB
/
post.html
File metadata and controls
58 lines (44 loc) · 1.09 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
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
<!DOCTYPE HTML>
<html>
<head>
<!--
Author: Arthur Payne
Date: October 9, 2013
-->
<meta charset="UTF-8" />
<title>SimpleBlog</title>
<script src="js/modernizr-1.5.js"></script>
<link href="css/SimpleBlogCSS.css" rel="stylesheet" type="text/css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
// Functions
// The entry object
var entry;
// On Page Ready
$(function() {
// If opened for editing, load the entry into the form
});
// Post the Entry
function postEntry() {
};
// Load an Entry for Editing
function loadEntry(entryNumber) {
};
// Save the Edited Entry
function saveEntry() {
};
</script>
</head>
<body>
<section id="PostForm">
<form>
Title: <input type="text" name="Title" /><br />
Date: <input type="text" name="Date" /><br />
Entry:<br />
<textarea id="Entry" name="Entry"></textarea><br />
<input type="button" id="PostBtn" name="PostBtn" value="Post" />
</form>
</section>
</body>
</html>