Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/main'
Browse files Browse the repository at this point in the history
git merge rebase false
  • Loading branch information
sharmnten authored Jan 17, 2025
1 parent a9a4630 commit bd797ae
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions signup/signup-appwrite.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ if (signupForm) {
event.preventDefault();

// Extract form values
const email = (document.getElementById('email') as HTMLInputElement).value.trim();
const username = (document.getElementById('username') as HTMLInputElement).value.trim();
const password = (document.getElementById('password') as HTMLInputElement).value.trim();
const name = (document.getElementById('name') as HTMLInputElement).value.trim();
const email = (document.getElementById('email')).value.trim();
const username = (document.getElementById('username')).value.trim();
const password = (document.getElementById('password')).value.trim();
const name = (document.getElementById('name')).value.trim();

// Basic validation
if (!email || !username || !password || !name) {
Expand Down

0 comments on commit bd797ae

Please sign in to comment.