feat(developers): add service URLs and onboarding guide to provisioning reply and success page
All checks were successful
Build and Deploy / deploy (push) Successful in 41s
All checks were successful
Build and Deploy / deploy (push) Successful in 41s
Ticket replies now include full onboarding info (webmail, IMAP/SMTP, Mattermost, Gitea, SilverDESK URLs) instead of raw provisioning status. Confirmation success page uses clickable service links with email client config details. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -50,18 +50,27 @@
|
||||
<h2>Accounts Activated</h2>
|
||||
<p>@_resultMessage</p>
|
||||
<div class="confirm-services">
|
||||
<div class="confirm-service-item">
|
||||
<a href="https://mail.silverlined.uk" target="_blank" class="confirm-service-item confirm-service-link">
|
||||
<strong>Email</strong>
|
||||
<span>@(_username)@@silverlabs.uk</span>
|
||||
</div>
|
||||
<div class="confirm-service-item">
|
||||
</a>
|
||||
<a href="https://ops.silverlined.uk" target="_blank" class="confirm-service-item confirm-service-link">
|
||||
<strong>Mattermost</strong>
|
||||
<span>Team chat & collaboration</span>
|
||||
</div>
|
||||
<div class="confirm-service-item">
|
||||
</a>
|
||||
<a href="https://git.silverlabs.uk" target="_blank" class="confirm-service-item confirm-service-link">
|
||||
<strong>Gitea</strong>
|
||||
<span>Source code repositories</span>
|
||||
</div>
|
||||
</a>
|
||||
<a href="https://silverdesk.silverlabs.uk" target="_blank" class="confirm-service-item confirm-service-link">
|
||||
<strong>SilverDESK</strong>
|
||||
<span>Support & tickets</span>
|
||||
</a>
|
||||
</div>
|
||||
<div class="confirm-email-config">
|
||||
<strong>Email Client Setup</strong>
|
||||
<div class="confirm-email-detail"><span>IMAP:</span> mail.silverlined.uk:993 (SSL)</div>
|
||||
<div class="confirm-email-detail"><span>SMTP:</span> mail.silverlined.uk:465 (SSL)</div>
|
||||
</div>
|
||||
<p class="dev-account-note">All accounts use the same password you just entered.</p>
|
||||
<div class="dev-success-actions">
|
||||
@@ -167,10 +176,10 @@
|
||||
|
||||
.confirm-services {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 1rem;
|
||||
margin: 1.5rem auto;
|
||||
max-width: 500px;
|
||||
max-width: 600px;
|
||||
}
|
||||
|
||||
.confirm-service-item {
|
||||
@@ -182,6 +191,17 @@
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.confirm-service-link {
|
||||
text-decoration: none;
|
||||
border: 1px solid rgba(77, 208, 225, 0.15);
|
||||
transition: background 0.2s, border-color 0.2s;
|
||||
}
|
||||
|
||||
.confirm-service-link:hover {
|
||||
background: rgba(77, 208, 225, 0.08);
|
||||
border-color: rgba(77, 208, 225, 0.35);
|
||||
}
|
||||
|
||||
.confirm-service-item strong {
|
||||
color: #4DD0E1;
|
||||
font-size: 0.95rem;
|
||||
@@ -193,6 +213,35 @@
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.confirm-email-config {
|
||||
margin: 1rem auto;
|
||||
max-width: 360px;
|
||||
padding: 0.75rem 1rem;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
border-radius: 8px;
|
||||
border: 1px solid rgba(255, 255, 255, 0.06);
|
||||
font-size: 0.82rem;
|
||||
}
|
||||
|
||||
.confirm-email-config strong {
|
||||
display: block;
|
||||
color: rgba(255, 255, 255, 0.5);
|
||||
font-size: 0.72rem;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.05em;
|
||||
margin-bottom: 0.4rem;
|
||||
}
|
||||
|
||||
.confirm-email-detail {
|
||||
color: rgba(255, 255, 255, 0.6);
|
||||
padding: 0.15rem 0;
|
||||
}
|
||||
|
||||
.confirm-email-detail span {
|
||||
color: rgba(255, 255, 255, 0.4);
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
@@media (max-width: 768px) {
|
||||
.confirm-user-info {
|
||||
flex-direction: column;
|
||||
@@ -200,7 +249,7 @@
|
||||
}
|
||||
|
||||
.confirm-services {
|
||||
grid-template-columns: 1fr;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user