I'm looking to enhance a .hbs template file in ember by incorporating an image. I am not a developer, but I'm attempting to customize the basic todo list app.
<section class='todoapp'>
<header id='header'>
<img src="../assets/logo2.png" />
{{input type='text'
class='new-todo'
placeholder='What else is in your wallet?'
value=newTitle
enter='createTodo'}}
</header>
My objective is to place an image next to the placeholder text before a user interacts with the input field. I'm assuming I can't include it within the 'value' attribute, so would I need to manipulate the .new-todo class in CSS to insert the image?