17 lines
658 B
Plaintext
17 lines
658 B
Plaintext
html
|
|
head
|
|
title Личный кабинет
|
|
body
|
|
h1 Личный кабинет
|
|
p Имя пользователя: #{username}
|
|
p Скин:
|
|
form(method="post" enctype="multipart/form-data" action="/api/uploadskin")
|
|
input(type="file" name="file")
|
|
input(type="submit" value="Загрузить")
|
|
if can_have_cloak
|
|
p Плащ:
|
|
form(method="post" enctype="multipart/form-data" action="/api/uploadCape")
|
|
input(type="file", name="file")
|
|
input(type="submit", value="Загрузить")
|
|
a(href="/api/logout") Выйти
|