I have implemented an HTML template on my website and need to capture information for my Django backend. Specifically, I am trying to extract the email address from this section of code:
<input type="text" placeholder="Email" value="" style="height: 30px; width: 250px; border: 2px solid grey; padding: 7px; margin-top: 10px; margin-bottom: 10px; font-size: 20px;">
When I input {{%form.email%}}
into value=""
, it displays <input id=
inside the box and ">
outside of it.
If I place {{%form.email%}
after this portion of HTML code, it creates another input box. However, I only want to utilize the existing one.
How should I proceed in order to achieve this?