-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforum.html
More file actions
110 lines (104 loc) · 2.39 KB
/
forum.html
File metadata and controls
110 lines (104 loc) · 2.39 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>SFOTH Community Forum</title>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
<style>
body {
background: #0d0d0d;
font-family: 'Press Start 2P', monospace;
color: #00ff90;
padding: 20px;
text-shadow: 1px 1px 0 #000;
}
nav {
text-align: center;
margin-bottom: 20px;
}
nav a {
color: #00ff90;
margin: 0 15px;
text-decoration: none;
}
.container {
background: rgba(0, 0, 0, 0.8);
border: 4px solid #00ff90;
padding: 20px;
max-width: 900px;
margin: auto;
border-radius: 8px;
}
h1 {
color: #ffffff;
font-size: 18px;
text-align: center;
margin-bottom: 20px;
}
.post {
background: #111;
border: 2px dashed #00ff90;
padding: 15px;
margin-bottom: 15px;
font-size: 12px;
}
.post-title {
color: #ffcc00;
margin-bottom: 5px;
}
.post-meta {
font-size: 10px;
color: #999;
margin-bottom: 8px;
}
.post-content {
line-height: 1.6;
}
form {
border: 2px dashed #00ff90;
padding: 15px;
background: #111;
margin-bottom: 30px;
}
input, textarea, button {
font-family: 'Press Start 2P', monospace;
font-size: 10px;
padding: 8px;
margin: 5px 0;
background: #000;
color: #00ff90;
border: 2px solid #00ff90;
width: 100%;
}
button {
cursor: pointer;
}
footer {
text-align: center;
font-size: 10px;
margin-top: 20px;
color: #888;
}
</style>
</head>
<body>
<nav>
<a href="index.html">🏠 Home</a>
<a href="forum.html">💬 Forum</a>
</nav>
<div class="container">
<h1>💬 SFOTH IV Community Forum</h1>
<form id="postForm">
<input type="text" id="username" placeholder="Your name" required />
<input type="text" id="title" placeholder="Post title" required />
<textarea id="content" placeholder="Your post..." required rows="4"></textarea>
<button type="submit">📨 Post</button>
</form>
<div id="posts"></div>
<footer>
Forum powered by Shedletsky's Eternal Legacy | Posts saved locally | © 2025
</footer>
</div>
<script src="assets/cloudcontrol.js"></script>
</body>
</html>