-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCrypto website.txt
86 lines (78 loc) · 2.49 KB
/
Crypto website.txt
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- A professional crypto website template -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CryptoPro - Your Crypto Gateway</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<!-- Navigation bar -->
<nav>
<ul>
<li><a href="#hero">Home</a></li>
<li><a href="#prices">Prices</a></li>
<li><a href="#register">Register</a></li>
<li><a href="#login">Login</a></li>
<li><a href="#dashboard">Dashboard</a></li>
</ul>
</nav>
</header>
<main>
<!-- Hero section -->
<section id="hero">
<h1>Welcome to CryptoPro</h1>
<p>Your gateway to the world of cryptocurrency.</p>
</section>
<!-- Market Prices -->
<section id="prices">
<h2>Live Market Prices</h2>
<div id="market-prices">
<!-- Live market data will go here -->
</div>
</section>
<!-- Registration Form -->
<section id="register">
<h3>Register to start earning</h3>
<form id="registration-form">
<label for="username">Username:</label>
<input type="text" id="username" name="username">
<label for="email">Email:</label>
<input type="email" id="email" name="email">
<label for="password">Password:</label>
<input type="password" id="password" name="password">
<button type="submit">Register</button>
</form>
</section>
<!-- Login Form -->
<section id="login">
<h3>Login to your account</h3>
<form id="login-form">
<label for="login-email">Email:</label>
<input type="email" id="login-email" name="email">
<label for="login-password">Password:</label>
<input type="password" id="login-password" name="password">
<button type="submit">Login</button>
</form>
</section>
<!-- Dashboard -->
<section id="dashboard">
<h2>Your Dashboard</h2>
<p>Welcome, <span id="dashboard-username"></span></p>
<h3>Trade Account Overview</h3>
<div id="account-summary">
<!-- Display trade info here -->
<p>Trade Account Balance: $<span id="account-balance">0</span></p>
<p>Total Profit: $<span id="total-profit">0</span></p>
<!-- Additional data can be added here -->
</div>
</section>
</main>
<footer>
<p>© 2023 CryptoPro. All rights reserved.</p>
</footer>
<script src="js/script.js"></script>
</body>
</html>