[bug] Add link to password recovery documentation; For bug 77637

This commit is contained in:
Sergey Konovalov
2025-11-11 19:38:35 +03:00
parent b888276ecf
commit bde82221dd
3 changed files with 31 additions and 2 deletions

View File

@ -75,6 +75,16 @@ body::-webkit-scrollbar-thumb {
background: #efefef;
}
a {
color: #ff6f3d;
text-decoration: underline;
font-weight: 400;
}
a:hover {
color: #e55a2b;
}
/* Spinner animation */
@keyframes spin {
from {

View File

@ -39,7 +39,19 @@ export default function Login() {
<div className={styles.loginCard}>
<h1 className={styles.title}>ONLYOFFICE Admin Panel</h1>
<p className={styles.subtitle}>Enter your password to access the admin panel</p>
<div className={styles.descriptionContainer}>
<p className={styles.description}>The session is valid for 60 minutes.</p>
<p className={styles.description}>
Need to reset your password? See{' '}
<a
href='https://helpcenter.onlyoffice.com/docs/installation/docs-admin-panel.aspx#passwordresetrecovery_block'
target='_blank'
rel='noopener noreferrer'
>
password recovery documentation
</a>
</p>
</div>
<div className={styles.form}>
<div className={styles.inputGroup}>

View File

@ -31,10 +31,17 @@
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.descriptionContainer {
display: flex;
flex-direction: column;
gap: 16px;
margin: 0 0 32px 0;
}
.description {
color: #333;
font-size: 14px;
margin: 0 0 32px 0;
margin: 0;
line-height: 1.5;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}