blob: c87fc55582b57dd20d8f7bd0e759f7b616eef2be (
plain)
1
2
3
4
5
6
7
8
9
|
<%- include('header', { title: "Change profile text" }) %>
<style>
textarea { width: 100%; max-width: 45em; }
</style>
<form action="/change_about" method="post">
<textarea name="about" rows="20" cols="80" maxlength="32000" autofocus><%= about %></textarea>
<p>
<button type="submit">Submit</button>
</form>
|