Skip to content

Commit

Permalink
fixing error
Browse files Browse the repository at this point in the history
  • Loading branch information
Norseolee committed Dec 22, 2023
1 parent 8359ab4 commit 86ce3c2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ <h1 style="text-align: center">UPDATE READING</h1>
<div class="update-Due-kwh">
<label for="updateTenantId">Tenant ID:</label>
<input
type="number"
type="text"
name="updateTenantId"
id="updateTenantId"
readonly />
Expand All @@ -137,7 +137,7 @@ <h1 style="text-align: center">UPDATE READING</h1>

<label for="updatePerKwh">Per Kwh</label>
<input
type="number"
type="text"
required
oninput="amountCalculation()"
name="updatePerKwh"
Expand All @@ -154,15 +154,15 @@ <h1 style="text-align: center">UPDATE READING</h1>

<label for="updatePreviousReading">Previous Reading: </label>
<input
type="number"
type="text"
oninput="amountCalculation()"
name="updatePreviousReading"
required
id="updatePreviousReading" />

<label for="updateCurrentReading">Current Reading: </label>
<input
type="number"
type="text"
oninput="amountCalculation()"
required
name="updateCurrentReading"
Expand All @@ -172,7 +172,7 @@ <h1 style="text-align: center">UPDATE READING</h1>
<div class="update-Totalamount">
<label for="updateConsume">Consumption: </label>
<input
type="number"
type="text"
name="updateConsume"
class="updateConsume"
readonly />
Expand Down

0 comments on commit 86ce3c2

Please sign in to comment.