Update to (almost) match design
This commit is contained in:
parent
ca0cede1aa
commit
03d89361cd
2 changed files with 15 additions and 5 deletions
|
@ -320,11 +320,19 @@ export default class SecurityUserSettingsTab extends React.Component {
|
|||
return (
|
||||
<div className="mx_SettingsTab mx_SecurityUserSettingsTab">
|
||||
<div className="mx_SettingsTab_heading">{_t("Security & Privacy")}</div>
|
||||
<a href={"#/user/" + MatrixClientPeg.get().getUserId()} onClick={this._onGoToUserProfileClick}>
|
||||
{_t("Verify your devices in your User Profile")}
|
||||
</a>
|
||||
<div className="mx_SettingsTab_section">
|
||||
<span className="mx_SettingsTab_subheading">{_t("Sessions")}</span>
|
||||
<span className="mx_SettingsTab_subheading">{_t("Where you’re logged in")}</span>
|
||||
<span>
|
||||
{_t(
|
||||
"Manage the names of and sign out of your sessions below or " +
|
||||
"<a>verify them in your User Profile</a>.", {},
|
||||
{
|
||||
a: sub => <a href={"#/user/" + MatrixClientPeg.get().getUserId()}
|
||||
onClick={this._onGoToUserProfileClick}
|
||||
>{sub}</a>
|
||||
}
|
||||
)}
|
||||
</span>
|
||||
<div className='mx_SettingsTab_subsectionText'>
|
||||
{_t("A session's public name is visible to people you communicate with")}
|
||||
<DevicesPanel />
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue