-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.html
39 lines (39 loc) · 1.52 KB
/
main.html
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
<!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>
</head>
<body>
<div class="container">
<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>
</div>
</body>
</html>