feat: started working on submit page
This commit is contained in:
parent
6ea6dbd4ad
commit
25b0282fef
1 changed files with 24 additions and 0 deletions
24
FediNews/Components/Pages/Content/Submit.razor
Normal file
24
FediNews/Components/Pages/Content/Submit.razor
Normal file
|
@ -0,0 +1,24 @@
|
|||
@page "/submit"
|
||||
<article>
|
||||
<h3>Submit to Fedi News</h3>
|
||||
<div>
|
||||
<p>title</p>
|
||||
<input type="text" />
|
||||
</div>
|
||||
<div>
|
||||
<p>url</p>
|
||||
<input type="text"/>
|
||||
</div>
|
||||
<div>
|
||||
<p>comment</p>
|
||||
<textarea></textarea>
|
||||
</div>
|
||||
<div>
|
||||
<button >submit</button>
|
||||
</div>
|
||||
<p>Leave url blank to submit a text-only post. If there is no url, the comment will appear directly under the title. A comment is optional, if a url is present.</p>
|
||||
</article>
|
||||
|
||||
@code {
|
||||
|
||||
}
|
Loading…
Reference in a new issue