-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
66 lines (63 loc) · 2.28 KB
/
Copy pathsignup.html
File metadata and controls
66 lines (63 loc) · 2.28 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Sign up — Claw Is Open</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link href="https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<nav>
<div class="nav-wrap">
<a href="index.html" class="nav-logo">
<div class="logo-mark">🦞</div>
Claw Is Open
</a>
<div class="nav-center">
<a href="marketplace.html">Browse</a>
<a href="marketplace.html#categories">Categories</a>
<a href="creators.html">Creators</a>
<a href="index.html#how">How it works</a>
<a href="blog.html">Blog</a>
</div>
<div class="nav-right">
<a href="signin.html" class="btn btn-ghost">Log in</a>
<a href="signup.html" class="btn btn-dark">Sign up free</a>
</div>
</div>
</nav>
<section class="form-page">
<div class="container">
<div class="form-card">
<h1>Sign up free</h1>
<p class="s-sub">Create an account to browse, purchase, and deploy AI assistants.</p>
<form id="signup-form" onsubmit="event.preventDefault(); window.location.href='index.html';">
<div class="form-group">
<label for="name">Full name</label>
<input type="text" id="name" name="name" placeholder="Alex Rivera" required />
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" name="email" placeholder="you@company.com" required />
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" placeholder="••••••••" required minlength="8" />
</div>
<button type="submit" class="btn btn-dark">Create account</button>
</form>
<p class="form-footer">Already have an account? <a href="signin.html">Log in</a></p>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="footer-bottom">
<p>© 2026 Claw Is Open. All rights reserved.</p>
</div>
</div>
</footer>
</body>
</html>