Login Logo Change

GazTheGoat

New member
Joined
Aug 27, 2023
Messages
3
Hi Guys

New here...!
I have a reseller account with a large host and dont have root access.
I want to change the logo people see when they enter their username and pass.
This screen here : https://1drv.ms/i/s!Atrz8JfQ6tcLh_Uga6Bh37zHucGLEA

They have told me
Only the root user has the ability to change the logo on the login page and it would apply to every account on the server, so that wouldn't be possible.

Is there anyway I can change these logo from the DirectAdmin logo to my companys logo to show my branding to the customer.

TIA
 
Is there anyway I can change these logo from the DirectAdmin logo to my companys logo to show my branding to the customer.
Shorty said, no. Only the admin can do that.

However, there is another option. Once the user logged in, there is also a logo in the upper left corner.
That is a logo you can change to your own company logo as reseller.
 
I understand.
Is there a way then that we can create a custom php login page and have it somewhere else on my site?
 
As far as I know that would require virtual host change (and maybe some other change), if possible. And that is also only something admin can do for you.

I wouldn't worry too much as long as it says "directadmin" and not the name of your admin's company. We've worked for this for years, and still do, even as admin.
 
you need manual create your own login page and generate using onetime-login key.
 
Really its just this simple:

Code:
<form action="https://SERVER_URL.com:2222/CMD_LOGIN" method="post">
Username: <input type="text" name="username" value="" /><br>
Password: <input type="text" name="password" value="" /><br>
<input type="submit" value="Login to DirectAdmin" class="button" />
</form>
 
Back
Top