2025-11-04 00:02:51 +00:00
{{template "base.html" .}}
{{define "title"}}Login{{end}}
2025-12-11 00:30:24 +00:00
{{define "extraheader"}}
< style >
2025-11-04 00:02:51 +00:00
.register-container {
max-width: 900px;
margin: 0 auto;
}
.register-box {
box-shadow: 0 0 15px rgba(0,0,0,0.1);
border-radius: 10px;
overflow: hidden;
}
.register-form-section {
padding: 40px;
}
.register-info-section {
padding: 40px;
background-color: #f8f9fa;
}
.register-header {
margin-bottom: 25px;
}
.logo-area {
text-align: center;
margin-bottom: 30px;
}
2025-12-11 00:30:24 +00:00
< / style >
2025-11-04 00:02:51 +00:00
{{end}}
{{define "content"}}
< div class = "container min-vh-100 d-flex align-items-center justify-content-center py-5" >
< div class = "register-container" >
< div class = "row register-box g-0" >
<!-- Left side: Registration Form -->
< div class = "col-md-6 register-form-section" >
< div class = "register-header" >
< h2 > Create an Account< / h2 >
< p class = "text-muted" > Join us today to get started< / p >
< / div >
2025-11-04 23:21:13 +00:00
< form method = "POST" action = "/signup" >
2025-11-04 00:02:51 +00:00
< div class = "mb-3" >
2025-11-05 14:15:06 +00:00
< label for = "name" class = "form-label" > Display Name< / label >
2025-11-04 23:21:13 +00:00
< input type = "text" class = "form-control" name = "name" required >
2025-11-04 00:02:51 +00:00
< / div >
< div class = "mb-3" >
2025-11-05 14:15:06 +00:00
< label for = "username" class = "form-label" > Username< / label >
< input type = "username" class = "form-control" name = "username" required >
< / div >
< div class = "mb-3" >
< label for = "password" class = "form-label" > Password< / label >
< input type = "password" class = "form-control" name = "password" required >
2025-11-04 00:02:51 +00:00
< / div >
< div class = "mb-3 form-check" >
2025-11-04 23:21:13 +00:00
< input type = "checkbox" class = "form-check-input" name = "terms" required >
2025-11-04 00:02:51 +00:00
< label class = "form-check-label" for = "terms" > I agree to the < a href = "#" > Terms of Service< / a > and < a href = "#" > Privacy Policy< / a > < / label >
< / div >
< div class = "d-grid gap-2" >
< button type = "submit" class = "btn btn-primary" > Register< / button >
< / div >
< div class = "mt-3 text-center" >
2026-01-15 00:20:19 +00:00
< p > Already have an account? < a href = "/signin" > Sign in< / a > < / p >
2025-11-04 00:02:51 +00:00
< / div >
< / form >
< / div >
<!-- Right side: Account Information -->
< div class = "col-md-6 register-info-section" >
< div >
2026-01-14 20:52:17 +00:00
< div class = "logo-area" >
< img src = "/static/img/nidus-logo-256-transparent.png" > < / img >
< / div >
2025-11-04 00:02:51 +00:00
< div class = "mb-4" >
< h5 > Who should register?< / h5 >
< p > This platform is designed for professionals who need to manage projects and collaborate with team members. Whether you're a freelancer, small business owner, or part of a larger organization, our tools can help streamline your workflow.< / p >
< / div >
< div class = "mb-4" >
< h5 > What happens after registration?< / h5 >
< p > After you register with your email, you'll receive a confirmation message with instructions to complete your account setup. You'll then have access to all features and can customize your workspace based on your specific needs.< / p >
< / div >
< div class = "mb-3" >
< small class = "text-muted" > For any questions about account types or registration, please contact our support team at support@yourproduct.com< / small >
< / div >
< / div >
< / div >
< / div >
< / div >
< / div >
{{end}}