-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
125 lines (123 loc) · 3.22 KB
/
index.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
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<html lang="en">
<head><head><title>Login - Kasius Next</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/970a0290cd.js" crossorigin="anonymous"></script>
<style type="text/css">
* {
padding: 0;
margin: 0;
overflow: hidden;
font-family: Inter;
text-align: center;
}
.options {
outline: 1px solid black;
height: 100%;
width: 100%;
}
input {
background: lightgray;
border:#767676 solid 1px;
border-radius: 2.5px;
padding: 2px;
transition: all 0.2s ease;
padding:5px;
}
input:focus {
background: white;
border:#767676 solid 1px;
border-radius: 2.5px;
transition: all 0.2s ease;
outline: none;
}
section {
Background-image: url("bg.jpg") ;
background-size: cover;
height: 100%;
padding: 0;
margin: 0;
width: 100%;
}
button {
padding: 5px;
font-weight: bold;
margin-right: 5px;
background: lightgray;
border: #767676 solid 1px;
border-radius: 2.5px;
transition: all 0.2s ease;
width: 85;
}
nav {
display: inline-block;
}
li {
float: left;
display: block;
}
.users {
background-color: none;
border-radius: 0px 0px 5px 5px;
padding: 5px;
}
button:hover {
background: #4d4d4d90;
border-radius: 2.5px;
transition: all 0.2s ease;
color:white;
}
button:active {
background: #4d4d4d;
border-radius: 2.5px;
transition: all 0.2s ease;
color:white;
}
h1 {
text-shadow: 2px 2px 10px #fff;
font-size: 40px;
}
</style>
</head>
<body><section>
<div class="options">
<nav><ul>
<div class="users">
<li><a onclick="aloginuser1()"><button><img src="Icons/user.png" style="height: 50; width: 50;"></img><br>User1</button></a> </li>
<li><a onclick="aloginuser2()"><button><img src="Icons/notes.png" style="height: 50; width: 50;"></img><br>User2</button></li></a>
</div><br>
</ul></nav>
<div id="user1"><br><br><br>
<img src="Icons/user.png" style="height: 150; width: 150;"><br><br>
<H1 style="text-align: center; color: black;" id="text">User1</H1><br>
<button style="width: 150px;" onclick="openuser1()">Sign In</button>
</div>
<div id="user2" style="display: none;"><br><br><br>
<img src="Icons/notes.png" style="height: 150; width: 150;"><br><br>
<H1 style="text-align: center; color: black;" id="text">User2</H1><br>
<input type="password" id="input" style="height: 25px; box-sizing: border-box; border-radius: 5px; margin: 0;"> <button style="width: 30px; margin: 0;" onclick="openuser2()"><i class="fa-solid fa-arrow-right"></i></button>
<br><br>
<button style="width: fit-content; margin: 0;" onclick="openuser2()">This user is incompatible with this version of Kasius Next!</button>
</div>
<script>
function aloginuser1() {
document.getElementById("user1").style.display = "block";
document.getElementById("user2").style.display = "none";
}
function aloginuser2() {
document.getElementById("user2").style.display = "block";
document.getElementById("user1").style.display = "none";
}
function openuser1() {
window.location.replace("kasiusdesktop.html")
}
function openuser2() {
if (document.getElementById("input").value == "69420") {
window.location.replace("kasiusdesktop2.html");
} else {
window.alert("Incorrect Password!");
}
}
</script>
</div></section>
</body>
</html>