Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
<!DOCTYPE html>
<html>
<head>
<title>Real-Time Auction</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="timer-container">
<p>Time Remaining: <span id="time-remaining">60</span> seconds</p>
</div>
<div id="item-container">
<h2>Item Name</h2>
<p>Item Description</p>
<p>Starting Bid: $100</p>
</div>
<div id="bid-container">
<form>
<label for="bid-amount-max">Enter Maximum Bid Amount:</label>
<input type="number" id="bid-amount-max" name="bid-amount-max" min="100" step="1" required>
<label for="bid-amount">Enter Bid Amount:</label>
<input type="number" id="bid-amount" name="bid-amount" min="100" step="1" required>
<button type="submit">Place Bid</button>
</form>
<p>Your current bid: <span id="current-bid">$100</span></p>
</div>
<div id="highest-bid-container">
<p>Highest Bid: <span id="highest-bid">$100</span></p>
</div>
<script src="app.js"></script>
</body>
</html>