Skip to content

Commit

Permalink
Rename device name field and mark fields as required
Browse files Browse the repository at this point in the history
  • Loading branch information
xanderfrangos committed May 24, 2024
1 parent 621adf4 commit 7087c98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src_assets/common/assets/web/pin.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<h1 class="my-4">{{ $t('pin.pin_pairing') }}</h1>
<form action="" class="form d-flex flex-column align-items-center" id="form">
<div class="card flex-column d-flex p-4 mb-4">
<input type="number" pattern="\d*" placeholder="PIN" autofocus id="pin-input" class="form-control mt-2" />
<input type="text" placeholder="Name (optional)" id="name-input" class="form-control my-4" />
<input type="number" pattern="\d*" placeholder="PIN" autofocus id="pin-input" class="form-control mt-2" required />
<input type="text" placeholder="Device Name" id="name-input" class="form-control my-4" required />
<button class="btn btn-primary">{{ $t('pin.send') }}</button>
</div>
<div class="alert alert-warning">
Expand Down

0 comments on commit 7087c98

Please sign in to comment.