-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
90 lines (74 loc) · 1.9 KB
/
Copy pathsignup.html
File metadata and controls
90 lines (74 loc) · 1.9 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
layout: default
title: "Sign Up"
permalink: /signup/
---
<section id="signup" class="content-container">
<h1>Create an Account</h1>
<p>Join LLmachine to access AI toolkits, exclusive resources, and personalized features.</p>
<form action="/dashboard/" method="GET">
<label for="name">Full Name<span class="required">*</span>:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email Address<span class="required">*</span>:</label>
<input type="email" id="email" name="email" required>
<label for="password">Password<span class="required">*</span>:</label>
<input type="password" id="password" name="password" required>
<label for="confirm-password">Confirm Password<span class="required">*</span>:</label>
<input type="password" id="confirm-password" name="confirm-password" required>
<button class="cta-button" type="submit">Create Account</button>
</form>
<p class="form-footer">Already have an account? <a href="/signin/">Sign in here</a>.</p>
</section>
<style>
#signup {
padding: 40px 20px;
background: #1f1f1f;
color: #f9f9f9;
border-radius: 10px;
max-width: 500px;
margin: 40px auto;
box-shadow: 0 0 20px rgba(0,0,0,0.4);
text-align: center;
}
#signup h1 {
color: #00BFFF;
font-size: 2rem;
margin-bottom: 10px;
}
#signup form {
display: flex;
flex-direction: column;
gap: 15px;
text-align: left;
}
#signup label {
font-weight: bold;
color: #ddd;
}
#signup input {
padding: 10px;
border: 1px solid #444;
background-color: #111;
color: #fff;
border-radius: 5px;
}
#signup .cta-button {
background-color: #4CAF50;
color: white;
padding: 10px;
font-size: 1rem;
border: none;
border-radius: 6px;
cursor: pointer;
}
#signup .cta-button:hover {
background-color: #45a049;
}
#signup a {
color: #00BFFF;
text-decoration: none;
}
#signup a:hover {
text-decoration: underline;
}
</style>