-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpublish.html
More file actions
32 lines (32 loc) · 749 Bytes
/
publish.html
File metadata and controls
32 lines (32 loc) · 749 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<!-- <link rel="icon" type="image/svg+xml" href="/vite.svg" /> -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Hypernote</title>
<style>
form {
display: flex;
flex-direction: column;
gap: 1rem;
}
</style>
</head>
<body>
<h1>Publish</h1>
<form id="publish">
<input type="text" name="name" id="name" placeholder="Name" />
<textarea
placeholder="<pre>hello world</pre>"
name="content"
id="content"
cols="30"
rows="10"
></textarea>
<button type="submit">Publish</button>
</form>
<pre id="publishid"></pre>
<script type="module" src="/src/publish.ts"></script>
</body>
</html>