-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnew-post.html
More file actions
35 lines (34 loc) · 767 Bytes
/
new-post.html
File metadata and controls
35 lines (34 loc) · 767 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
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>New Post • Embloggen</title>
<script async src="js/new-post.js"></script>
<link rel="stylesheet" href="css/style.css">
<style>
textarea {
width: calc(100% - 4px);
}
</style>
</head>
<body>
<main>
<header>
<h1>New Post</h1>
</header>
<hr>
<section>
<form id="new-post-form">
<input name="title" type="text" placeholder="Title" required autofocus>
<textarea name="synopsis" placeholder="Synopsis" required></textarea>
<textarea name="content" placeholder="Content" required></textarea>
<input type="submit" value="Submit">
</form>
</section>
<hr>
<footer>
<a href="index.html" id="home-link">Cancel</a>
</footer>
</main>
</body>
</html>