Add: Temp Compose page

This commit is contained in:
Donatas Kirda 2024-05-16 00:40:36 +03:00
parent afb1c61048
commit 5c1ba212ea
Signed by: bloodwiing
GPG Key ID: 63020D8D3F4A164F
2 changed files with 17 additions and 0 deletions

View File

View File

@ -0,0 +1,17 @@
<script>
</script>
<style lang="scss">
.composeForm {
display: flex;
flex-flow: column nowrap;
gap: 16px;
}
</style>
<form action="/compose" method="post" class="composeForm">
<h1>Compose</h1>
<input type="text" name="name" id="name">
<textarea name="content" id="content" rows="4"></textarea>
</form>