Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
leafac committed Dec 8, 2024
1 parent 57fe026 commit 33fa94b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions source/index.mts
Original file line number Diff line number Diff line change
Expand Up @@ -660,11 +660,11 @@ application.server?.push({
response,
head: html`<title>Kill the Newsletter!</title>`,
body: html`
<form
<div
key="feeds/post"
type="form"
method="POST"
action="/feeds"
novalidate
css="${css`
display: flex;
gap: var(--space--2);
Expand All @@ -685,7 +685,7 @@ application.server?.push({
`}"
/>
<div><button type="submit">Create feed</button></div>
</form>
</div>
<p>
<small>
<a href="https://leafac.com">By Leandro Facchinetti</a> |
Expand Down Expand Up @@ -991,11 +991,11 @@ application.server?.push({
</div>
<p><a href="/">← Create another feed</a></p>
<hr />
<form
<div
key="feeds/patch"
type="form"
method="PATCH"
action="/feeds/${request.state.feed.publicId}"
novalidate
css="${css`
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -1042,13 +1042,13 @@ application.server?.push({
/>
</label>
<div><button type="submit">Update feed settings</button></div>
</form>
</div>
<hr />
<form
<div
key="feeds/delete"
type="form"
method="DELETE"
action="/feeds/${request.state.feed.publicId}"
novalidate
css="${css`
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -1092,7 +1092,7 @@ application.server?.push({
/>
</label>
<div><button type="submit">Delete feed</button></div>
</form>
</div>
`,
}),
);
Expand Down

0 comments on commit 33fa94b

Please sign in to comment.