forked from kenilGamer/frostnetwork-pro2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
login.html
62 lines (56 loc) · 2.09 KB
/
login.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Minecraft Login</title>
<link rel="stylesheet" href="style1.css">
<link rel="stylesheet" href="login.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet"/>
</head>
<body>
<div class="container">
<div class="login-container">
<img src="./img/20231104_173408.png" alt="FROSTNETWORK" class="minecraft-logo">
<h2>Login to Your Account</h2>
<form id="loginForm">
<div class="input-group">
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Username" required>
</div>
<div class="input-group">
<label for="password">Password:</label>
<input type="password" id="password" name="password" placeholder="password" required>
</div>
<div class="but">
<div class="dd"><button type="submit" onclick="login()">
<img src="./img/login.png" width="20" alt=""><a href="./index.html">Login</a>
</button></div>
or
<button type="button">
<a href="./sinup.html">sign up</a>
</button>
</div>
<div class="ico">
<a href="#">
<img src="./img/discord.png" alt="">
</a>
<a href="#">
<img src="./img/search.png" alt="">
</a>
<a href="#">
<img src="./img/facebook.png" alt="">
</a>
</div>
</form>
</div>
</div>
<script>
function login() {
// Add your login logic here
// For now, just prevent the form from submitting
alert("Login button clicked. Add your login logic!");
}
</script>
</body>
</html>