Skip to content

Commit

Permalink
Merge pull request #1049 from Rohan1786/submit-button-fixed
Browse files Browse the repository at this point in the history
submit button has been fixed in sell.html
  • Loading branch information
ankit071105 authored Nov 9, 2024
2 parents fcbb22e + d943fb7 commit a67c88f
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion sell.html
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,27 @@
background-color: transparent;
color: #ff4d4d;
}
form .btn1 {
background-color: #ff4d4d;
border: 2px solid #ff4d4d;
color: white;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
padding: 25px;
width: 100%;
border-radius: 4px;
cursor: pointer;
font-size: 1.25rem;
margin-top: 30px;
}


form .btn1:hover {
background-color: transparent;
color: #ff4d4d;
}
</style>


Expand Down Expand Up @@ -1010,7 +1031,7 @@ <h1>Sell Bus Ticket</h1>
<label for="price">Original Price:</label>
<input type="number" id="price" name="price" required min="0" step="0.01">

<button type="submit">Submit Ticket</button>
<button type="submit" class="btn1">Submit Ticket</button>
</form>

</main>
Expand Down

0 comments on commit a67c88f

Please sign in to comment.