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

99 lines
3.3 KiB
JavaScript
Raw Normal View History

2022-12-14 11:36:53 +01:00
import * as React from 'react';
2022-12-15 05:11:22 +01:00
import {Avatar, Link} from "@mui/material";
2022-12-14 11:36:53 +01:00
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 logo from "../img/ntfy2.svg";
import Typography from "@mui/material/Typography";
import {NavLink} from "react-router-dom";
2022-12-14 11:36:53 +01:00
const Signup = () => {
const handleSubmit = async (event) => {
event.preventDefault();
const data = new FormData(event.currentTarget);
2022-12-15 05:11:22 +01:00
const username = data.get('username');
const password = data.get('password');
2022-12-14 11:36:53 +01:00
const user = {
2022-12-15 05:11:22 +01:00
username: username,
password: password
}; // FIXME omg so awful
await api.createAccount("http://localhost:2586"/*window.location.origin*/, username, password);
2022-12-14 11:36:53 +01:00
const token = await api.login("http://localhost:2586"/*window.location.origin*/, user);
console.log(`[Api] User auth for user ${user.username} successful, token is ${token}`);
session.store(user.username, token);
window.location.href = routes.app;
};
return (
2022-12-15 05:11:22 +01:00
<Box
sx={{
display: 'flex',
flexGrow: 1,
justifyContent: 'center',
flexDirection: 'column',
alignContent: 'center',
alignItems: 'center',
height: '100vh'
}}
>
<Avatar
sx={{ m: 2, width: 64, height: 64, borderRadius: 3 }}
src={logo}
variant="rounded"
/>
<Typography sx={{ typography: 'h6' }}>
Create a ntfy account
</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}}
>
Sign up
</Button>
2022-12-14 11:36:53 +01:00
</Box>
2022-12-15 05:11:22 +01:00
<Typography sx={{mb: 4}}>
<NavLink to={routes.login} variant="body1">
2022-12-16 04:07:04 +01:00
Already have an account? Sign in!
2022-12-15 05:11:22 +01:00
</NavLink>
</Typography>
</Box>
2022-12-14 11:36:53 +01:00
);
}
export default Signup;