This repository was archived by the owner on Jul 31, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
64 lines (62 loc) · 3.03 KB
/
main.html
File metadata and controls
64 lines (62 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>#SaveCW Costumes Login</title>
<link rel="stylesheet" type="text/css" href="./style/main.css">
<script defer src="./script/languages.js"></script>
<script defer src="./script/main.js"></script>
<script defer src="./script/frontSettings.js"></script>
</head>
<body>
<div class="container">
<div class="floating-alert" id="floatingAlert">
<span>❗</span>
<a style="color: black; text-decoration: none;" id="alertNotice" href="https://blog.arisamiga.rocks/post/shutdowncostumeclient/" rel="noopener noreferrer" target="_blank">
News About Costume-Client
</a>
<span id="closeAlert" style="margin-left:auto; margin-right:0.3rem; cursor:pointer; font-size:1.2rem;">×</span>
</div>
<div class="dropdown">
<button class="dropbtn"><img src="./images/english.png"></button>
<div id="myDropdown" class="dropdown-content">
<a href="#" id="russian"><img src="./images/russian.png"> Русский</a>
<a href="#" id="english"><img src="./images/english.png"> English</a>
</div>
</div>
<h2 id="loginTitle">#SaveCW Costumes Login</h2>
<div id="field">
<div class="form-group">
<button id="getInfo">Automatically get Info</button>
</div>
<div class="form-group">
<label for="id">ID</label>
<input type="text" id="id" name="id" placeholder="Enter your ID">
</div>
<div class="form-group">
<label for="username" id="usernameText">Username</label>
<input type="username" id="username" name="username" placeholder="Enter your username">
</div>
<div class="form-group">
<button type="submit" id="submit">Next</button>
</div>
</div>
<div class="statusContainer"></div>
<button id="settingsButton" class="gear-button">
<img src="./images/gear-icon.png" alt="Settings" width="20" height="20">
</button>
<!-- Settings Layer -->
<div id="settingsLayer" class="settings-layer">
<div class="settings-content">
<span id="closeSettings" class="close-settings">×</span>
<h2 class="settingsTitleContainer"><img src="./images/gear-icon.png" alt="Settings" width="20" height="20"> <span id="settingsTitle">Settings</span></h2>
<p style="text-align-last: left;" id="serverURL">Costume Server URL:</p>
<input type="text" id="costumeServerURL" name="costumeServerURL" placeholder="Enter Costume Server URL" value="https://cat.arisamiga.rocks">
<div class="serverStatus"></div>
<button id="saveSettings">Save</button>
<div id="statusSettings"></div>
</div>
</div>
</div>
</body>
</html>