Wrong text displayed in form exercise

I am stumped on this particular issue and not sure if this is an issue with my code or the live server. The form is supposed to be called Coin but mine says Corner. I do not have the word corner anywhere in my code… I have refreshed the live server a few times and at one point it did display the correct word “Coin”. Upon return later, it had changed back to Corner! Here is my code:

<form action="#" method="POST">
        <label>
            Coin:
            <input type="text" name="coinName" placeholder="Coin" required />
        </label>
        <label>
            Amount:
            <input type="number" min="0" name="coinQuantity" placeholder="Amount" required />
        </label>
        <button type="submit">Buy</button>
    </form>

image

That’s very strange. Have you tried closing the server and opening it again.

I have tried that and it came back with the same text.