diff options
Diffstat (limited to 'views/change_about.ejs')
-rw-r--r-- | views/change_about.ejs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/views/change_about.ejs b/views/change_about.ejs new file mode 100644 index 0000000..249f9be --- /dev/null +++ b/views/change_about.ejs @@ -0,0 +1,9 @@ +<%- include('header', { title: "Change Profile" }) %> +<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> |