-
Notifications
You must be signed in to change notification settings - Fork 2
/
signup.html
35 lines (28 loc) · 1.38 KB
/
signup.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up - Social Impact Bond Platform</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<div class="signup-container">
<h1>Sign Up</h1>
<p>Join our platform and start investing in impactful projects.</p>
<form class="signup-form" action="#" method="post">
<label for="username">Username</label>
<input type="text" id="username" name="username" required placeholder="Enter your username">
<label for="email">Email</label>
<input type="email" id="email" name="email" required placeholder="Enter your email">
<label for="password">Password</label>
<input type="password" id="password" name="password" required placeholder="Create a password">
<label for="confirm-password">Confirm Password</label>
<input type="password" id="confirm-password" name="confirm-password" required placeholder="Confirm your password">
<button type="submit" onclick="window.location.href='moredetails.html'">Create Account</button>
</form>
<p class="login-link">Already have an account? <a href="login.html">Log in</a></p>
</div>
<script src="signup.js"></script>
</body>
</html>