Skip to content

Commit

Permalink
fix: Username instead of registration numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
mradigen committed Apr 9, 2024
1 parent 116d97c commit 136fa89
Showing 1 changed file with 2 additions and 9 deletions.
11 changes: 2 additions & 9 deletions src/routes/register/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -66,13 +66,6 @@
placeholder="John Doe"
required
/>
<Input
title="Registration Number"
name="team_members"
class="w-full"
placeholder="00AAA0000"
required
/>
{:else}
<Input
title="Team Name"
Expand All @@ -81,9 +74,9 @@
placeholder="Triple A Battery"
required
/>
{#each { length: Number(size) } as _, i}
{#each { length: Number(size) - 1 } as _, i}
<Input
title="Registration Number {i + 1}"
title="Member {i + 2}'s VIT Chennai Events Username"
name="team_members"
class="w-full"
placeholder="00AAA0000"
Expand Down

0 comments on commit 136fa89

Please sign in to comment.