diff --git a/client/assets/styles/styles.css b/client/assets/styles/styles.css
index d6736a5e..9bb63d57 100644
--- a/client/assets/styles/styles.css
+++ b/client/assets/styles/styles.css
@@ -170,6 +170,11 @@ button.left:hover, button.left:focus {
box-shadow: inset 0.5em 0 0 0 whitesmoke;
}
+a {
+ color: whitesmoke;
+ font-size: 150%;
+}
+
svg {
fill: none;
stroke: whitesmoke;
diff --git a/client/index.html b/client/index.html
index 259100d0..f2a78170 100644
--- a/client/index.html
+++ b/client/index.html
@@ -1,7 +1,7 @@
- mnml pvp tbs
+ mnml.gg
diff --git a/client/src/components/login.component.jsx b/client/src/components/login.component.jsx
index 3eb4a2d6..41465585 100644
--- a/client/src/components/login.component.jsx
+++ b/client/src/components/login.component.jsx
@@ -30,6 +30,11 @@ function renderLogin({ submitLogin, submitRegister }) {
onClick={() => submitRegister(name, password)}>
Register
+
);
}
diff --git a/server/src/account.rs b/server/src/account.rs
index 765efe11..1b52d537 100644
--- a/server/src/account.rs
+++ b/server/src/account.rs
@@ -61,7 +61,6 @@ pub fn account_from_token(token: String, tx: &mut Transaction) -> Result Result {
let id = Uuid::new_v4();
- info!("{:?} {:?}", params.password, params.password.len());
if params.password.len() < PASSWORD_MIN_LEN {
return Err(err_msg("password must be at least 12 characters"));
}