blob: 5e3f76780c4f196de5ef231cf6541cf910ce3d8a (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Fortis Card</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css" rel="stylesheet" />
<style>
body {
margin: 0;
padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #0f0f0f;
color: #ffffff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
p {
font-size: 1.2rem;
max-width: 600px;
margin: 0 auto;
}
.status {
margin-top: 2rem;
font-style: italic;
color: #888;
}
.repo-button {
margin-top: 2.5rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
background-color: #ffffff;
color: #000000;
padding: 0.6rem 1rem;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: background-color 0.2s ease;
}
.repo-button:hover {
background-color: #e1e1e1;
}
.repo-icon {
font-size: 1.2rem;
}
footer {
position: absolute;
bottom: 1rem;
font-size: 0.9rem;
color: #666;
}
</style>
</head>
<body>
<h1>Fortis Card</h1>
<p>A secure, minimal cryptocurrency hardware wallet. Built for security; designed for freedom.</p>
<div class="status">This project is currently in development. Stay tuned for the Alpha release!</div>
<a class="repo-button" href="https://codeberg.org/FortisCard" target="_blank" rel="noopener noreferrer">
<i class="fas fa-code-branch repo-icon"></i>
View on Codeberg
</a>
<footer>© 2025 FORTISCARD LLC</footer>
</body>
</html>
|