-
+
Eden was created in part to recreate the era experience as close as possible. We define era as anything that happened up to and including the
September 2008 patch. While FFXI is still a great game today, it is vastly different than it was in 2007/2008. We don't aim to take the place of
diff --git a/client/src/components/accounts/index.jsx b/client/src/components/accounts/index.jsx
index 9855a526..8a043ded 100644
--- a/client/src/components/accounts/index.jsx
+++ b/client/src/components/accounts/index.jsx
@@ -5,6 +5,7 @@ import Register from './register';
import Profile from './profile';
import apiUtil from '../../apiUtil';
+// prettier-ignore
// eslint-disable-next-line no-useless-escape
const emailRegex = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
diff --git a/client/src/components/newsbox.jsx b/client/src/components/newsbox.jsx
index b11fa790..011117cd 100644
--- a/client/src/components/newsbox.jsx
+++ b/client/src/components/newsbox.jsx
@@ -1,10 +1,58 @@
-import React from 'react';
+import React, { useMemo, useState } from 'react';
+import JWTReader from 'jwt-client';
import Card from 'react-bootstrap/Card';
import ReactMarkdown from 'react-markdown';
+import { Button } from 'semantic-ui-react';
import apiUtil from '../apiUtil';
import InfoDisplay from './InfoDisplay';
+function Trash({ id }) {
+ const [isConfirming, setIsConfirming] = useState(false);
+ return isConfirming ? (
+ <>
+
+
+ >
+ ) : (
+