-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate_index.html
61 lines (52 loc) · 1.25 KB
/
template_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
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
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="css/style.css">
</head>
<body>
<div class="side-menu push">
<h1>Your Journal</h1>
<ul>
<li><a href="#">Write</a></li>
<li><a href="#">Read</a></li>
<li><a href="#">Search</a></li>
<li><a href="#">Delete</a></li>
</ul>
</div>
<div class= "holder push">
<div class="formdiv">
<form id="entryform">
<p>Title:</p>
<input type="text" name="title">
<p>Author:</p>
<input type="text" name="author">
<p>Tags:</p>
<input type="text" name="tags">
<p>Content:</p>
<textarea form="entryform" name="content"></textarea>
<button type="submit" id="submit-entry">Submit</button>
</form>
</div>
<div class="entryview">
</div>
<div class="searchview">
<form id="searchform">
<p>Search Content for Entries:</p>
<input type="text" name="search">
<button type="button" id="search-button">Search</button>
</form>
<div class="searchresults">
</div>
</div>
</div>
<div class="endside push">
</div>
<div class="endview push">
<a id="menu-button" href="#">Menu</a>
</div>
<script type="text/javascript" src="js/vendor/jquery-1.12.0.min.js"></script>
<script type="text/javascript" src="js/journal_challenge.js">
</script>
</body>
</html>