mirror of
https://github.com/ONLYOFFICE/server.git
synced 2026-02-10 18:05:07 +08:00
[bug] Add link to password recovery documentation; For bug 77637
This commit is contained in:
@ -75,6 +75,16 @@ body::-webkit-scrollbar-thumb {
|
|||||||
background: #efefef;
|
background: #efefef;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #ff6f3d;
|
||||||
|
text-decoration: underline;
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
a:hover {
|
||||||
|
color: #e55a2b;
|
||||||
|
}
|
||||||
|
|
||||||
/* Spinner animation */
|
/* Spinner animation */
|
||||||
@keyframes spin {
|
@keyframes spin {
|
||||||
from {
|
from {
|
||||||
|
|||||||
@ -39,7 +39,19 @@ export default function Login() {
|
|||||||
<div className={styles.loginCard}>
|
<div className={styles.loginCard}>
|
||||||
<h1 className={styles.title}>ONLYOFFICE Admin Panel</h1>
|
<h1 className={styles.title}>ONLYOFFICE Admin Panel</h1>
|
||||||
<p className={styles.subtitle}>Enter your password to access the admin panel</p>
|
<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}>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.form}>
|
||||||
<div className={styles.inputGroup}>
|
<div className={styles.inputGroup}>
|
||||||
|
|||||||
@ -31,10 +31,17 @@
|
|||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.descriptionContainer {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 16px;
|
||||||
|
margin: 0 0 32px 0;
|
||||||
|
}
|
||||||
|
|
||||||
.description {
|
.description {
|
||||||
color: #333;
|
color: #333;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
margin: 0 0 32px 0;
|
margin: 0;
|
||||||
line-height: 1.5;
|
line-height: 1.5;
|
||||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user