aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-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>