38 lines
710 B
HTML
38 lines
710 B
HTML
<h2>Add user</h2>
|
|
|
|
<form action='/adduser' method='post'>
|
|
<p>Name: <input type='text' name='name' /></p>
|
|
<input type='submit' value='Submit' />
|
|
</form>
|
|
|
|
|
|
<h2>Update user data</h2>
|
|
|
|
<form action='/updateuserdata' method='post'>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Moneys</th>
|
|
<th>Foods</th>
|
|
<th>Goodwill (moneys / foods)</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{userdata}
|
|
</tbody>
|
|
</table>
|
|
<input type='submit' value='Update' />
|
|
</form>
|
|
|
|
|
|
<h2>FAQ</h2>
|
|
|
|
<p><strong>Question:</strong> The words "foods" and "moneys" are incorrect. Why
|
|
do you use them?</p>
|
|
<p><strong>Answer:</strong> In the domain of this lunch club, they are correct.</p>
|
|
|
|
|
|
<em>Tihs is not a typo.</em>
|
|
|