-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (55 loc) · 2.05 KB
/
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
<!DOCTYPE html5>
<html>
<head>
<meta charset="utf-8">
<title>Blog</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<link rel="icon" href="images/favicon.ico" type="image/x-icon">
</head>
<body>
<section>
<div id="blanket"></div>
<div id="popup">
<form class="login">
<div id="username-container">
<label for="username">Username:</label>
<input type="text" name="username">
</div>
<div id="password-container">
<label for="password">Password:</label>
<input type="text" name="password">
</div>
<button id="login-submit">Login</button>
</form>
</div>
</section>
<header>
<span>
<h1>Colin's Blog</h1>
<h1 class="inline-block hidden" id="new-blog-entry">+</h1>
</span>
</header>
<main>
<div id="form-container">
<form>
<div id="title-input">
<label for="title">Title:</label>
<input type="text" id="title"/>
</div>
<div id="blog-input">
<label for="blog-entry">Entry:</label>
<textarea id="blog" rows="10" cols="80"></textarea>
</div>
<div id="button-container">
<button id="formButton">Add</button>
<button id="cancelButton">Cancel</button>
</div>
</form>
</div>
<div id="displayArea"></div>
</main>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="app.js"></script>
</body>
</html>