-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpost.html
More file actions
29 lines (29 loc) · 943 Bytes
/
post.html
File metadata and controls
29 lines (29 loc) · 943 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Post</title>
<link rel="stylesheet" href="lib/normalize.css">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<h1>The Awesome Blog</h1>
<script src="auth.js"></script>
<script src="post.js"></script>
<script src="header.js"></script>
<form action="" method="get" id="comment-form">
<div class="field-wrapper">
<label for="subject">Subject: </label>
<input type="text" name="subject" id="subject" required>
</div>
<div class="field-wrapper">
<label for="body">Body: </label>
<textarea id="body" name="body" rows="4" cols="50"></textarea>
</div>
<div class="field-wrapper">
<input type="submit" value="Publish!">
</div>
</form>
</body>
</html>