2025-01-23 01:12:17 +03:00
|
|
|
html
|
|
|
|
head
|
2025-01-31 01:02:29 +03:00
|
|
|
meta(name="viewport" content="width=device-width, initial-scale=1.0")
|
2025-02-02 19:19:12 +03:00
|
|
|
title Личный кабинет | Скин
|
2025-01-23 20:42:55 +03:00
|
|
|
link(href="css/index.css" rel="stylesheet")
|
|
|
|
script(type="module" src="js/skinview3d.bundle.js")
|
|
|
|
script(type="module" src="js/skin3d.js")
|
2025-01-23 01:12:17 +03:00
|
|
|
body
|
2025-01-23 20:42:55 +03:00
|
|
|
|
|
|
|
iframe(name="hiddenFrame" style="position:absolute; top:-1px; left:-1px; width:1px; height:1px;")
|
2025-02-02 19:19:12 +03:00
|
|
|
include header.pug
|
|
|
|
|
2025-01-23 20:42:55 +03:00
|
|
|
div(class="content-container")
|
|
|
|
div(class="content")
|
2025-02-02 19:19:12 +03:00
|
|
|
h1 Скин
|
2025-01-23 20:42:55 +03:00
|
|
|
canvas(id="skin_container")
|
|
|
|
if can_have_cloak
|
|
|
|
div(class="cape_type")
|
|
|
|
input(type="radio" id="cape" name="cape_type" value="cape" checked)
|
|
|
|
label(for="cape") Плащ
|
|
|
|
|
|
|
|
|
input(type="radio" id="elytra" name="cape_type" value="elytra" checked="unchecked")
|
|
|
|
label(for="elytra") Элитры
|
|
|
|
p Скин:
|
2025-01-31 17:28:52 +03:00
|
|
|
form(target="hiddenFrame" id="skinForm")
|
|
|
|
input(type="file" name="file" id="skinFile")
|
2025-01-23 20:42:55 +03:00
|
|
|
input(type="submit" value="Загрузить")
|
|
|
|
if can_have_cloak
|
|
|
|
p Плащ:
|
2025-01-31 17:28:52 +03:00
|
|
|
form(target="hiddenFrame" id="capeForm")
|
|
|
|
input(type="file" name="file" id="capeFile")
|
|
|
|
input(type="submit" value="Загрузить")
|
2025-01-23 20:42:55 +03:00
|
|
|
|