mirror of
https://github.com/Grasscutters/GrassClipper.git
synced 2024-11-16 04:45:34 +00:00
login popup layout
This commit is contained in:
parent
bbc2d54287
commit
4abaadb2a0
@ -22,6 +22,43 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- Login popup -->
|
||||||
|
<div id="loginPanel">
|
||||||
|
<div id="loginPopupTitle">
|
||||||
|
<span>
|
||||||
|
Login or Register
|
||||||
|
</span>
|
||||||
|
<div id="loginPopupCloseBtn" onclick="closeLoginPopup()">
|
||||||
|
<img src="icons/close.svg" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="loginPopupContentBody">
|
||||||
|
<div id="loginPopupContentBodyText">
|
||||||
|
<span>
|
||||||
|
Please enter a username and password to login or register.
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div id="loginPopupContentBodyInputs">
|
||||||
|
<div id="loginPopupContentBodyInputsUsername">
|
||||||
|
<span>
|
||||||
|
Username:
|
||||||
|
</span>
|
||||||
|
<input type="text" id="loginUsername" />
|
||||||
|
</div>
|
||||||
|
<div id="loginPopupContentBodyInputsPassword">
|
||||||
|
<span>
|
||||||
|
Password:
|
||||||
|
</span>
|
||||||
|
<input type="password" id="loginPassword" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="loginPopupContentBodyBtns">
|
||||||
|
<button class="playBtn" id="loginPopupContentBodyBtnLogin" onclick="login()">Login</button>
|
||||||
|
<button class="altBtn" id="loginPopupContentBodyBtnCancel" onclick="closeLoginPopup()">Register</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<!-- Setting panel -->
|
<!-- Setting panel -->
|
||||||
<div id="settingsPanel" style="display: none;">
|
<div id="settingsPanel" style="display: none;">
|
||||||
<div id="settingsTitleBar">
|
<div id="settingsTitleBar">
|
||||||
|
@ -33,7 +33,19 @@ body {
|
|||||||
margin-bottom: 6px;
|
margin-bottom: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#loginPanel img {
|
||||||
|
height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
#loginPopupTitle {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
font-size: 1.2em;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
#firstTimeNotice,
|
#firstTimeNotice,
|
||||||
|
#loginPanel,
|
||||||
#settingsPanel {
|
#settingsPanel {
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
Loading…
Reference in New Issue
Block a user