29 lines
789 B
HTML
29 lines
789 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>posts</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<form action="/make_post" method="post">
|
||
|
|
<div>
|
||
|
|
<label for="username">Username:</label>
|
||
|
|
<input name="username" id="username" />
|
||
|
|
</div>
|
||
|
|
<br>
|
||
|
|
<div>
|
||
|
|
<label for="password">Password:</label>
|
||
|
|
<input type="password" name="password" id="password" />
|
||
|
|
</div>
|
||
|
|
<br>
|
||
|
|
<div>
|
||
|
|
<label for="post">Post contents:</label>
|
||
|
|
<br>
|
||
|
|
<textarea name="post" id="post"></textarea>
|
||
|
|
</div>
|
||
|
|
<br>
|
||
|
|
<div>
|
||
|
|
<button>Post</button>
|
||
|
|
</div>
|
||
|
|
</form>
|
||
|
|
<h1>posts</h1>
|