Moon commited on
Commit
8fd7fd7
·
1 Parent(s): 969d2be

Create index.html

Browse files
Files changed (1) hide show
  1. index.html +126 -0
index.html ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Welcome to AreoIsReal.xyz Forum</title>
5
+ <style>
6
+ /* CSS Styles */
7
+ body {
8
+ font-family: Arial, sans-serif;
9
+ background-color: #f5f5f5;
10
+ margin: 0;
11
+ padding: 0;
12
+ }
13
+
14
+ .header {
15
+ background-color: #333;
16
+ color: #fff;
17
+ padding: 20px;
18
+ text-align: center;
19
+ }
20
+
21
+ .container {
22
+ max-width: 800px;
23
+ margin: 0 auto;
24
+ padding: 20px;
25
+ }
26
+
27
+ .content {
28
+ background-color: #fff;
29
+ padding: 20px;
30
+ }
31
+
32
+ .pinned-post {
33
+ background-color: #f7f7f7;
34
+ border: 1px solid #ddd;
35
+ padding: 15px;
36
+ margin-bottom: 20px;
37
+ border-radius: 5px;
38
+ }
39
+
40
+ .admin-info {
41
+ display: flex;
42
+ align-items: center;
43
+ gap: 10px;
44
+ margin-bottom: 10px;
45
+ }
46
+
47
+ .admin-avatar {
48
+ width: 50px;
49
+ height: 50px;
50
+ border-radius: 50%;
51
+ }
52
+
53
+ .admin-name {
54
+ font-weight: bold;
55
+ }
56
+
57
+ /* Additional styles for forms */
58
+ .form-container {
59
+ max-width: 400px;
60
+ margin: 20px auto;
61
+ padding: 20px;
62
+ background-color: #f7f7f7;
63
+ border: 1px solid #ddd;
64
+ border-radius: 5px;
65
+ }
66
+
67
+ .form-field {
68
+ margin-bottom: 15px;
69
+ }
70
+ </style>
71
+ </head>
72
+ <body>
73
+ <header class="header">
74
+ <h1>Welcome to AreoIsReal.xyz Forum</h1>
75
+ <p>Join the discussion!</p>
76
+ </header>
77
+
78
+ <div class="container">
79
+ <div class="content">
80
+ <div class="pinned-post">
81
+ <div class="admin-info">
82
+ <img class="admin-avatar" src="https://characterai.io/i/400/static/avatars/uploaded/2023/5/24/mZFtkpiGfs_YmlnxyNTgPWDUBcHy8Mb08Phaeih5LFI.webp" alt="Admin Avatar">
83
+ <span class="admin-name">Admin</span>
84
+ </div>
85
+ <h2>Welcome to the Forum Section!</h2>
86
+ <p>This is a pinned post by the admin. Feel free to start discussions and interact with others.</p>
87
+ <p><em>Pinned on: August 13, 2023</em></p>
88
+ </div>
89
+
90
+ <!-- Login Form -->
91
+ <div class="form-container">
92
+ <h2>Login</h2>
93
+ <form id="login-form" action="login.php" method="post">
94
+ <div class="form-field">
95
+ <label for="login-username">Username:</label>
96
+ <input type="text" id="login-username" name="login-username" required>
97
+ </div>
98
+ <div class="form-field">
99
+ <label for="login-password">Password:</label>
100
+ <input type="password" id="login-password" name="login-password" required>
101
+ </div>
102
+ <button type="submit">Login</button>
103
+ </form>
104
+ </div>
105
+
106
+ <!-- Registration Form -->
107
+ <div class="form-container">
108
+ <h2>Register</h2>
109
+ <form id="register-form" action="register.php" method="post">
110
+ <div class="form-field">
111
+ <label for="register-username">Username:</label>
112
+ <input type="text" id="register-username" name="register-username" required>
113
+ </div>
114
+ <div class="form-field">
115
+ <label for="register-password">Password:</label>
116
+ <input type="password" id="register-password" name="register-password" required>
117
+ </div>
118
+ <button type="submit">Register</button>
119
+ </form>
120
+ </div>
121
+
122
+ <!-- Actual forum content and discussions can be added here -->
123
+ </div>
124
+ </div>
125
+ </body>
126
+ </html>