import { useState } from "react"; import { Link } from "react-router-dom"; export const Password = () => { const [password, setPassword] = useState(""); const [confirmPassword, setConfirmPassword] = useState(""); const [errors, setErrors] = useState(null); const [success, setSuccess] = useState(false); const resetFields = () => { setErrors(null); setPassword(""); setConfirmPassword(""); }; const reset = () => { resetFields(); setSuccess(false); }; const deletePassword = () => { if ( window.confirm( "Are you sure? This will close all your currently opened ssh sessions." ) ) { fetch(`/api/player/token/password`, { method: "DELETE", credentials: "same-origin", }) .then((r) => r.json()) .then((r) => { if (r.success) { resetFields(); setSuccess(true); } }); } }; const submitPassword = () => { if ( window.confirm( "Are you sure? This will close all your current ssh sessions." ) ) { fetch(`/api/player/token/password`, { method: "PUT", credentials: "same-origin", headers: { "Content-Type": "application/json", }, body: JSON.stringify({ password, password_confirmation: confirmPassword, }), }) .then((r) => r.json()) .then((p) => { if (p.success) { resetFields(); setSuccess(true); } else if (p.errors) { if (typeof p.errors === "object") { setErrors( Object.keys(p.errors).map( (field) => `${field}: ${p.errors[field].join(",")}` ) ); } else { setErrors([p.errors]); } } }); } }; return ( <>

Update SSH Password

An SSH password allows you to connect from any device. However, it is inherently less secure than a public key.

Use a password at your own risk.


Previously set a password and no longer want it?

Or if you're dead set on it...

Password *

setPassword(e.target.value)} type="password" required />

Confirm Password *

setConfirmPassword(e.target.value)} required />
{errors && (
{errors.map((error, i) => (

{error}

))}
)}

{success &&
Password updated
}
); };