14 lines
265 B
HTML
14 lines
265 B
HTML
|
<html>
|
||
|
<header>
|
||
|
<title>V Blog</title>
|
||
|
</header>
|
||
|
<body>
|
||
|
<form action='/new_article' method='post'>
|
||
|
<input type='text' placeholder='Title' name='title'> <br>
|
||
|
<textarea placeholder='Text' name='text'></textarea>
|
||
|
<input type='submit'>
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|
||
|
|