diff options
author | Tor Andersson <tor@ccxvii.net> | 2025-05-06 20:30:33 +0200 |
---|---|---|
committer | Tor Andersson <tor@ccxvii.net> | 2025-05-06 20:45:32 +0200 |
commit | 6ae417c0be86a44b6dfeb7537da1f9b70a288950 (patch) | |
tree | f149b0423f52c46a152ff032e0a20abbb1d3191b /views/account_change_about.pug | |
parent | 644c287eede443c608eeab0cc6cd41da228947e3 (diff) | |
download | server-6ae417c0be86a44b6dfeb7537da1f9b70a288950.tar.gz |
Rename pug files to match access url.
Diffstat (limited to 'views/account_change_about.pug')
-rw-r--r-- | views/account_change_about.pug | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/views/account_change_about.pug b/views/account_change_about.pug new file mode 100644 index 0000000..7a0531e --- /dev/null +++ b/views/account_change_about.pug @@ -0,0 +1,27 @@ +//- vim:ts=4:sw=4: +doctype html +html + head + include head + title Change profile text + style. + input, textarea { width: min(45rem,100%) } + body + include header + article + h1 Change profile text + form(method="post") + p Name: #{user.name} + p Mail: #{user.mail} + p + textarea( + name="about" + rows=20 + cols=80 + maxlength=32000 + autofocus + ) + | + | #{about} + p + button(type="submit") Submit |