Files
BABA_YAGA/Assets/UI/LoginPopup.uxml
2026-04-29 01:04:28 +07:00

15 lines
1.1 KiB
Plaintext

<ui:UXML xmlns:ui="UnityEngine.UIElements" xmlns:uie="UnityEditor.UIElements" editor-extension-mode="False">
<Style src="project:/Assets/UI/Global.uss" />
<ui:VisualElement name="LoginRoot" class="screen-root" style="background-color: rgba(0, 0, 0, 0.8); justify-content: center; align-items: center;">
<ui:VisualElement name="Window" class="panel-glass" style="width: 450px;">
<ui:Label text="WELCOME TRAVELLER" class="text-heading" style="align-self: center;" />
<ui:Label text="Enter your username to begin" class="text-label" style="align-self: center; margin-bottom: 30px;" />
<ui:TextField name="UsernameInput" class="input-field" placeholder-text="Your name..." />
<ui:Label name="ErrorMsg" text="Name is already taken!" class="text-label" style="color: #ff4444; display: none; margin-bottom: 10px;" />
<ui:Button name="ConfirmBtn" text="CONFIRM" class="button-spring btn-join" style="height: 54px; margin-top: 10px;" />
</ui:VisualElement>
</ui:VisualElement>
</ui:UXML>