aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-11-17 21:26:38 -0600
committerParker <contact@pkrm.dev>2024-11-17 21:26:38 -0600
commit2eec9e6ce9aaa48c1008fabbfdfc750421c388ee (patch)
treeef8e51b681c8c250eb9bf44bf05e8da869b38bb5
parent56dbcdc7050c3c6726173cf3edbfc1fdd551a71c (diff)
"Sign Up" -> "Create Account"
-rw-r--r--app/src/components/Navbar.tsx2
-rw-r--r--app/src/components/Signup.tsx4
2 files changed, 3 insertions, 3 deletions
diff --git a/app/src/components/Navbar.tsx b/app/src/components/Navbar.tsx
index ea49ea8..79efce2 100644
--- a/app/src/components/Navbar.tsx
+++ b/app/src/components/Navbar.tsx
@@ -32,7 +32,7 @@ function Navbar() {
<a className={styles.link}>Login</a>
</Link>
<Link to={'/signup'}>
- <a className={styles.link}>Signup</a>
+ <a className={styles.link}>Create Account</a>
</Link>
</div>
<div className={styles.right}>
diff --git a/app/src/components/Signup.tsx b/app/src/components/Signup.tsx
index c01784e..0822c46 100644
--- a/app/src/components/Signup.tsx
+++ b/app/src/components/Signup.tsx
@@ -6,7 +6,7 @@ import axios from 'axios';
import Navbar from './Navbar';
function Signup() {
- document.title = 'LinkLogger | Signup';
+ document.title = 'LinkLogger | Create Account';
const [username, setUsername] = useState('');
const [password, setPassword] = useState('');
@@ -65,7 +65,7 @@ function Signup() {
<>
<Navbar />
<div className={styles.container}>
- <h1>Sign up</h1>
+ <h1>Create Account</h1>
<h2 className={error ? styles.errorVisible : styles.errorHidden}>
{error}
</h2>