commerce/DAILYTRADE24
2025-05-18 10:40:41 +01:00

97 lines
2.0 KiB
Plaintext

<!-- index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DailyTrade247</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="app">
<h1>Welcome to DailyTrade247</h1>
<p>This is your trading platform. Please login or register.</p>
<a href="login.html">Login</a> | <a href="register.html">Register</a>
</div>
</body>
</html>
<!-- style.css -->
/* You can paste this into a style.css file */
body {
margin: 0;
font-family: Arial, sans-serif;
background: #f4f4f4;
text-align: center;
padding: 50px;
}
h1 {
color: #333;
}
a {
color: #0070f3;
text-decoration: none;
margin: 0 10px;
}
/* login.html */
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Login</h2>
<form>
<input type="email" placeholder="Email" required><br><br>
<input type="password" placeholder="Password" required><br><br>
<button type="submit">Login</button>
</form>
</body>
</html>
<!-- register.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Register</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Register</h2>
<form>
<input type="text" placeholder="Full Name" required><br><br>
<input type="email" placeholder="Email" required><br><br>
<input type="password" placeholder="Password" required><br><br>
<button type="submit">Register</button>
</form>
</body>
</html>
<!-- vercel.json -->
{
"rewrites": [
{ "source": "/(.*)", "destination": "/index.html" }
]
}
I've created the basic structure for your site, including:
index.html (Home page)
login.html (Login form)
register.html (Registration form)
style.css (Simple styling)
vercel.json (To fix 404 errors)