-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcurrency.html
124 lines (122 loc) · 2.46 KB
/
currency.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
<!DOCTYPE html>
<html>
<head>
<title>Nightcoin monetization station</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=New+Tegomin&display=swap" rel="stylesheet">
<link rel='icon' href='https://lb123658.github.io/cebolla/favicon.png' type='image/png'/>
<style>
* {
user-select: none;
cursor: default;
font-family: 'New Tegomin', serif;
color: #f3e3c2;
}
body {
background: #282828;
}
#title {
position: absolute;
top: 0px;
left: 80px;
font-size: 20px;
}
#logo {
position: absolute;
top: 5px;
left: 5px;
width: 60px;
height: 60px;
}
#circleA {
width: 200px;
height: 200px;
border-radius: 50%;
border: none;
background: #ffd700;
color: #282828;
font-size: 70px;
font-family: arial;
}
#center {
position: absolute;
top: 150px;
left: 0px;
width: 100%;
text-align: center;
}
#generate:hover {
background: #f3e3c2;
color: #282828;
}
#input {
position: absolute;
top: 400px;
left: 35%;
width: 30%;
height: 40px;
border-radius: 7px;
border: 2px solid #ffd700;
font-size: 20px;
color: #ffd700;
background: transparent;
cursor: auto;
}
#enter {
position: absolute;
top: 470px;
left: 35%;
width: 31%;
height: 40px;
font-size: 20px;
border: 1px solid #ffd700;
background: #ffd700;
border-radius: 7px;
cursor: pointer;
color: #282828;
font-weight: bold;
}
#enter:hover {
border: 2px solid #ffd700;
}
#next {
position: absolute;
top: 408px;
right: 36%;
width: 40px;
height: 30px;
font-family: arial;
color: #ffd700;
font-size: 18px;
z-index: 1;
border: 1px solid #ffd700;
border-radius: 7px;
background: #282828;
cursor: pointer;
}
</style>
</head>
<body>
<p id="title">Nightcoin, buy in darkness.</p>
<img src="https://lb123658.github.io/cebolla/favicon.png" id="logo"/>
<p id="center"><button id="circleA" onmouseover="hover()" onmouseout="unhover()">₦</button></p>
<input type="text" id="input" placeholder="Username...">
<a href="https://lb123658.github.io/cebolla/currency" id="enterA">
<button id="enter">Sign in</button>
</a>
<button id="next" onclick="signIn()">➔</button>
<script>
function hover() {
document.getElementById("title").innerHTML = "Nightcoin, the privacy based cryptocurrency.";
}
function unhover() {
document.getElementById("title").innerHTML = "Nightcoin, buy in darkness.";
}
function signIn() {
var input = document.getElementById("input");
document.getElementById("enterA").href = "https://lb123658.github.io/cebolla/accounts/" + input.value;
}
</script>
</body>
</html>