Spaces:
No application file
No application file
<html> | |
<head> | |
<title>Welcome to AreoIsReal.xyz Forum</title> | |
<style> | |
/* CSS Styles */ | |
body { | |
font-family: Arial, sans-serif; | |
background-color: #f5f5f5; | |
margin: 0; | |
padding: 0; | |
} | |
.header { | |
background-color: #333; | |
color: #fff; | |
padding: 20px; | |
text-align: center; | |
} | |
.container { | |
max-width: 800px; | |
margin: 0 auto; | |
padding: 20px; | |
} | |
.content { | |
background-color: #fff; | |
padding: 20px; | |
} | |
.pinned-post { | |
background-color: #f7f7f7; | |
border: 1px solid #ddd; | |
padding: 15px; | |
margin-bottom: 20px; | |
border-radius: 5px; | |
} | |
.admin-info { | |
display: flex; | |
align-items: center; | |
gap: 10px; | |
margin-bottom: 10px; | |
} | |
.admin-avatar { | |
width: 50px; | |
height: 50px; | |
border-radius: 50%; | |
} | |
.admin-name { | |
font-weight: bold; | |
} | |
/* Additional styles for forms */ | |
.form-container { | |
max-width: 400px; | |
margin: 20px auto; | |
padding: 20px; | |
background-color: #f7f7f7; | |
border: 1px solid #ddd; | |
border-radius: 5px; | |
} | |
.form-field { | |
margin-bottom: 15px; | |
} | |
</style> | |
</head> | |
<body> | |
<header class="header"> | |
<h1>Welcome to AreoIsReal.xyz Forum</h1> | |
<p>Join the discussion!</p> | |
</header> | |
<div class="container"> | |
<div class="content"> | |
<div class="pinned-post"> | |
<div class="admin-info"> | |
<img class="admin-avatar" src="https://characterai.io/i/400/static/avatars/uploaded/2023/5/24/mZFtkpiGfs_YmlnxyNTgPWDUBcHy8Mb08Phaeih5LFI.webp" alt="Admin Avatar"> | |
<span class="admin-name">Admin</span> | |
</div> | |
<h2>Welcome to the Forum Section!</h2> | |
<p>This is a pinned post by the admin. Feel free to start discussions and interact with others.</p> | |
<p><em>Pinned on: August 13, 2023</em></p> | |
</div> | |
<!-- Login Form --> | |
<div class="form-container"> | |
<h2>Login</h2> | |
<form id="login-form" action="login.php" method="post"> | |
<div class="form-field"> | |
<label for="login-username">Username:</label> | |
<input type="text" id="login-username" name="login-username" required> | |
</div> | |
<div class="form-field"> | |
<label for="login-password">Password:</label> | |
<input type="password" id="login-password" name="login-password" required> | |
</div> | |
<button type="submit">Login</button> | |
</form> | |
</div> | |
<!-- Registration Form --> | |
<div class="form-container"> | |
<h2>Register</h2> | |
<form id="register-form" action="register.php" method="post"> | |
<div class="form-field"> | |
<label for="register-username">Username:</label> | |
<input type="text" id="register-username" name="register-username" required> | |
</div> | |
<div class="form-field"> | |
<label for="register-password">Password:</label> | |
<input type="password" id="register-password" name="register-password" required> | |
</div> | |
<button type="submit">Register</button> | |
</form> | |
</div> | |
<!-- Actual forum content and discussions can be added here --> | |
</div> | |
</div> | |
</body> | |
</html> | |