-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjoin.html
41 lines (38 loc) · 1.26 KB
/
join.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Join Us</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<img src="logo.png" alt="Logo"> <!-- Your logo -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="services.html">Services</a></li>
</ul>
</nav>
</header>
<!-- Join Section with background -->
<section id="join" class="join-section">
<h2>Join Us</h2>
<p>Create an account or login to access exclusive content.</p>
<!-- Registration Form -->
<div class="form-container">
<form action="/signup" method="post">
<input type="text" placeholder="Username" required>
<input type="password" placeholder="Password" required>
<button type="submit">Create Account</button>
</form>
<p>Already have an account? <a href="/login">Login here</a></p>
</div>
</section>
<footer>
<p>© 2024 JFcryptoassets. All rights reserved.</p>
</footer>
</body>
</html>