mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-05-15 03:56:12 +02:00
Use another server
This commit is contained in:
parent
17e5af654b
commit
f23c7a2dbf
9 changed files with 131 additions and 28 deletions
web/src/components
22
web/src/components/Preferences.js
Normal file
22
web/src/components/Preferences.js
Normal file
|
@ -0,0 +1,22 @@
|
|||
import * as React from 'react';
|
||||
import {CardContent} from "@mui/material";
|
||||
import Typography from "@mui/material/Typography";
|
||||
import Card from "@mui/material/Card";
|
||||
|
||||
const Preferences = (props) => {
|
||||
return (
|
||||
<>
|
||||
<Typography variant="h5">
|
||||
Manage users
|
||||
</Typography>
|
||||
<Card sx={{ minWidth: 275 }}>
|
||||
<CardContent>
|
||||
You may manage users for your protected topics here. Please note that since this is a client
|
||||
application only, username and password are stored in the browser's local storage.
|
||||
</CardContent>
|
||||
</Card>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
||||
export default Preferences;
|
Loading…
Add table
Add a link
Reference in a new issue