"Sign Up" -> "Create Account"

This commit is contained in:
Parker M. 2024-11-17 21:26:38 -06:00
parent 56dbcdc705
commit 2eec9e6ce9
Signed by: parker
GPG Key ID: 505ED36FC12B5D5E
2 changed files with 3 additions and 3 deletions

View File

@ -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}>

View File

@ -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>