forked from chookspace/chookchat
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>posts</title>
|
|
<link rel="stylesheet" type="text/css" href="/style.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<script src="/script.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="postbox">
|
|
<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" rows="10"></textarea>
|
|
</div>
|
|
<br>
|
|
<div>
|
|
<button>Post</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div id="posts">
|
|
<div id="posts-header">
|
|
<h1>posts</h1>
|
|
</div>
|