Would it be possible to make some type of mod in order to include a text box instead of a dropdown?

I am setting FA up for an accountant and he does not want to show his other clients name.

I have had a go at hacking the login.php file but I cant get it to work for me

Help with this would be great is I bashing my head HARD against my desk and it's becoming unstable

2

(5 replies, posted in Setup)

I know this is an old thread however I am trying to achieve the same thing as I do not want to show company name. I have had a play with the login.php but I just cant get it to work for me.

This is the code snippit that I have been working with.

---code--

echo "<tr><td>"._("Company")."</td><td><select name='company_login_name'>\n";
      for ($i = 0; $i < count($db_connections); $i++)
         echo "<option value=$i ".($i==$coy ? 'selected':'') .">" . $db_connections[$i]["name"] . "</option>";
      echo "</select>\n";
      start_row();
      label_cell($demo_text, "colspan=2 align='center'");
      end_row();

--end code--

Any help would be gratefully appreciated