-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (96 loc) · 3.51 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
<html translate="no">
<head>
<title>Minecraft World Community - login</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/js/bootstrap.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.2/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.3.2/firebase-database.js"></script>
<script src="main.js"></script>
<link rel="icon" type="image/png" href="UserCreeper.png" />
<link rel="stylesheet" href="geral.css">
<style>
body {
text-align: center;
background-image: url("MINECRAFT_img_background.jpg");
background-position: center;
background-size: cover;
}
#username {
width: 800;
}
#OtherPages {
position: fixed;
bottom: 0%;
background-color: rgba(75, 75, 75, 0.623);
border-top: 3px ridge rgba(0, 128, 0, 0.623);
width: 100%;
color: rgba(0, 255, 0, 0.863);
}
#OtherPages a {
color: rgba(0, 255, 157, 0.863);
}
.mc-btn {
display: inline-block;
padding: 10px;
border: 5px ridge green;
background-color: rgba(0, 0, 0, 0.329);
}
.mc-input {
height: 40px;
border: 5px ridge green;
background-color: aliceblue;
}
.mc-join {
color: aliceblue;
height: 40px;
border: 5px ridge green;
background-color: cadetblue;
}
#log-div {
display: inline;
}
</style>
</head>
<body>
<br>
<br>
<br>
<br>
<br>
<h1 style="color:aliceblue">Welcome to the <b>Minecraft World Community</b></h1>
<div id="log-div">
<label style="color: aliceblue;">log-in:</label>
<input type="text" id="username" class="mc-input"
placeholder="Type here you user name, it can be your Minecraft Nickname">
<input type="password" id="userpassword" class="mc-input" placeholder="Password">
</div>
<br>
<br>
<button class="mc-join" onclick="loged()">log-in Account</button>
<button class="mc-join" onclick="createAccount()">Create Account</button>
<p id="error"></p>
<br>
<div id="OtherPages">
<p>Visit our other Minecraft Websites</p>
<div class="mc-btn">
<a href="https://catmeooww.github.io/MinecraftPedia/">MinecraftPédia</a><br>
</div>
<div class="mc-btn">
<a href="https://catmeooww.github.io/Minecraft-Filter/">Minecraft Filter</a><br>
</div>
<div class="mc-btn">
<a href="https://catmeooww.github.io/The-Minecraft-World-News/">Minecraft News</a><br>
</div>
<div class="mc-btn">
<a href="https://catmeooww.github.io/Minecraft-Builder-Blog/">Minecraft Builders Blog</a><br>
</div>
<div class="mc-btn">
<a href="https://catmeooww.github.io/Minecraft-Listing/">Minecraft Lists</a><br>
</div>
<div class="mc-btn">
<a href="https://catmeooww.github.io/CatMeooww/catmeoowwProjects.html">More...</a><br>
</div>
</div>
</body>
</html>