mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-03-14 20:32:51 +00:00

Redirect unauthenticated users to the sign in page instead. Rationale: - The content on the welcome page is what often belongs to a separate "marketing site". The marketing content is of no use on self-hosted instances, which typically have new signups disabled and are for internal use only - (the real reason, let's be honest) a number of self-hosted instances are accessible over the public internet. Search engines index the nearly identical landing pages and see them as duplicated content.
28 lines
No EOL
430 B
CSS
28 lines
No EOL
430 B
CSS
#signup-modal .modal-header {
|
|
border-bottom: 0;
|
|
}
|
|
|
|
#signup-modal .modal-body {
|
|
padding: 0 50px 50px 50px;
|
|
}
|
|
|
|
#signup-modal div.title {
|
|
font-size: 30px;
|
|
text-align: center;
|
|
margin: 0 0 50px 0;
|
|
}
|
|
|
|
#signup-modal label {
|
|
font-weight: normal;
|
|
}
|
|
|
|
#signup-modal #link-instruction {
|
|
text-align: center;
|
|
}
|
|
|
|
#signup-result {
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
font-size: 18px;
|
|
display: none;
|
|
} |