1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-09-30 04:12:03 +02:00
ntfy/web/src/components/Signup.js

90 lines
3 KiB
JavaScript
Raw Normal View History

2022-12-14 11:36:53 +01:00
import * as React from 'react';
import TextField from "@mui/material/TextField";
import Button from "@mui/material/Button";
import Box from "@mui/material/Box";
import api from "../app/Api";
import routes from "./routes";
import session from "../app/Session";
2022-12-15 05:11:22 +01:00
import Typography from "@mui/material/Typography";
import {NavLink} from "react-router-dom";
2022-12-21 19:19:07 +01:00
import AvatarBox from "./AvatarBox";
import {useTranslation} from "react-i18next";
2022-12-14 11:36:53 +01:00
const Signup = () => {
2022-12-21 19:19:07 +01:00
const { t } = useTranslation();
2022-12-14 11:36:53 +01:00
const handleSubmit = async (event) => {
event.preventDefault();
const data = new FormData(event.currentTarget);
const user = {
2022-12-21 19:19:07 +01:00
username: data.get('username'),
password: data.get('password')
};
await api.createAccount(config.baseUrl, user.username, user.password);
const token = await api.login(config.baseUrl, user);
2022-12-14 11:36:53 +01:00
console.log(`[Api] User auth for user ${user.username} successful, token is ${token}`);
session.store(user.username, token);
window.location.href = routes.app;
};
2022-12-21 19:19:07 +01:00
if (!config.enableSignup) {
return (
<AvatarBox>
<Typography sx={{ typography: 'h6' }}>{t("Signup is disabled")}</Typography>
</AvatarBox>
);
}
2022-12-14 11:36:53 +01:00
return (
2022-12-21 19:19:07 +01:00
<AvatarBox>
2022-12-15 05:11:22 +01:00
<Typography sx={{ typography: 'h6' }}>
2022-12-21 19:19:07 +01:00
{t("Create a ntfy account")}
2022-12-15 05:11:22 +01:00
</Typography>
<Box component="form" onSubmit={handleSubmit} noValidate sx={{mt: 1, maxWidth: 400}}>
<TextField
margin="dense"
required
fullWidth
id="username"
label="Username"
name="username"
autoFocus
/>
<TextField
margin="dense"
required
fullWidth
name="password"
label="Password"
type="password"
id="password"
autoComplete="current-password"
/>
<TextField
margin="dense"
required
fullWidth
name="confirm-password"
label="Confirm password"
type="password"
id="confirm-password"
/>
<Button
type="submit"
fullWidth
variant="contained"
sx={{mt: 2, mb: 2}}
>
2022-12-21 19:19:07 +01:00
{t("Sign up")}
2022-12-15 05:11:22 +01:00
</Button>
2022-12-14 11:36:53 +01:00
</Box>
2022-12-21 19:19:07 +01:00
{config.enableLogin &&
<Typography sx={{mb: 4}}>
<NavLink to={routes.login} variant="body1">
{t("Already have an account? Sign in!")}
</NavLink>
</Typography>
}
</AvatarBox>
2022-12-14 11:36:53 +01:00
);
}
export default Signup;