I have an html input that looks like this:
<input type="number" min="4" max="100" step="1" name="myInput" value="33">
I am populating the value from a cookie/storage that is getting set from a previous screen. The previous screen is asking for a party size.
From a UX perspective, it i not clear what 33 means in this screen. Since I am populating the input, I cannot use placeholder text. This is why I am wondering if there is a way to inject "People" after the value somehow.
I really like how clean the UI looks without visible form labels, so if possible, I'd like to stay away from adding them.
This is what I am trying to accomplish (the red text):
Perhaps it is as "simple" as a background image, but I'd like to keep the spacing nice and sharp. Thank you for any suggestions!