Skip to content

Commit

Permalink
tweak password form
Browse files Browse the repository at this point in the history
  • Loading branch information
RoepStoep committed Sep 6, 2023
1 parent f5d1d84 commit e7fcd66
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/ui/tournament/detail/joinForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import router from '../../../router'
import TournamentCtrl from './TournamentCtrl'
import formWidgets from '../../shared/form'
import settings from '../../../settings'
import * as helper from '../../helper'

let isOpen = false
let tournamentCtrl: TournamentCtrl
Expand Down Expand Up @@ -52,7 +53,7 @@ function renderForm() {
<div className={'select_input no_arrow_after' + (t.private ? '' : ' notVisible')}>
<div className="text_input_container">
<label>Password: </label>
<input type="text" id="tournamentPassword" className="passwordField" />
<input type="text" id="tournamentPassword" className="passwordField" autocapitalize="off" autocomplete="off" oncreate={helper.autofocus} />
</div>
</div>
<div className={'select_input no_arrow_after' + (t.teamBattle ? '' : ' notVisible')}>
Expand Down

0 comments on commit e7fcd66

Please sign in to comment.