intergrating direct admin

xxmikexx

Verified User
Joined
Aug 8, 2003
Messages
7
is there a script that intergrates to a website?
i would like my customer to log-in on their control panel by using my website is this possible?
:confused:
 
Do you mean the size of the form fields like the text boxes?
What is it you would you like to resize?

-Jason
 
In this example of code; the textbox name is "username" and the size =20.

To find the code in your html: If you are using frontpage you could just double click the text box and change the size in the box that pops up.
If you are using some other editor then just click the text box once and then click on the html view and change the size value to a smaller number.
When you click on the textbox in normal or design view the html for the text box should be highlighted for you which will make it easier to find.


Code:
<form method="POST" action="Login--">
<p><input type="text" name="username" size="20"><input </form>

Hope this helps. If not let me know what software you are using. -Jason
 
Back
Top