I'm making a zenno template that works on multiple sites, however sometimes one site will contain extra forms with the same form elements. How can I tell zenno to use a certain input with a certain form?
Normally I would set Form = -1, but sometimes the first form on the page with the match is the wrong one. Is there a way to do this: if form id="register" AND input name="username"... then fill in the username?
Right now I have--
form: -1
tag: input
attribute: name
search type: text
value: username
If there's a different form with input name="username" it get's filled out incorrectly. I have to leave form = -1 though to work across multiple sites
. Am I going to have to count the number of forms, match the correct form action, get the form number, then do the stuff above? Seems messy, and I don't want to do it if I'm missing some obvious feature here?
Normally I would set Form = -1, but sometimes the first form on the page with the match is the wrong one. Is there a way to do this: if form id="register" AND input name="username"... then fill in the username?
Right now I have--
form: -1
tag: input
attribute: name
search type: text
value: username
If there's a different form with input name="username" it get's filled out incorrectly. I have to leave form = -1 though to work across multiple sites
