1
Is there anyway to put our logo / brand the logon page?
Question asked by Mike Prager - 5/14/2015 at 9:13 AM
Answered
Hi,
 
Is there anyway to white label the logon page to have our own logo and disclaimer text?
 
Thanks
 
Mike

6 Replies

Reply to Thread
0
Cem Alacayir Replied
Employee Post
Hi Mike,
Yes you can do those customizations by simply editing login.aspx.
Open it with a text editor and find these lines starting at line 16.
You can do the highlighted changes like this:
 
<tr>
    <td colspan="2">
      <img src="mylogo.png">
      <table border="0" cellpadding="5" cellspacing="0" style="width: 280px;">
          <tr>
            <td style="text-align: center"><img style="border: none; width: 48px; height: 48px" src="<%=LoginImageUrl%>" alt="" /></td>
            <td>Welcome to My Company<br /><%=Language.GetEntry("501")%></td>
          </tr>
      </table>                        
    </td>
</tr>
You can put mylogo.png in the same folder as login.aspx
In future versions, we plan to allow adding logos from administration page via UI.
1
Rabih Yamak Replied
not working anymore, any nkew solution to change the logo and put our company name ??
0
DCA Techs Replied
I'm using FileVista 7.30.2 and this is still working to brand and modify the logon page.
0
Stéphane Perrin Replied
The title of the page is still FileVista...
Also I got a link for Gleamtech at the right bottom of the login form. How can I remove that?
0
Cem Alacayir Replied
Employee Post Marked As Answer
For removing the GleamTech link from login.aspx, add the highlighted setting on this line:

<asp:Literal ID="Literal1" runat="server" Visible="false"></asp:Literal>

For changing the title for login.aspx and default.aspx:

<html>
    <title>Your Title</title>
    <head runat="server">
        <title></title>
    </head>

For changing top header title for default.aspx:

<div id="pageHeader" class="gt-pageHeader gt-nonSelectableText x-hidden-display">
   <span style="float: left;">Your Title</span>
0
Holger Czirpka Replied
Hi there,

actually there is no way to implement a custom logo?
In my FileVista Version 8.3.7.0 login.aspx there is no entry
with "mylogo.png" or anything else.

Thanks and Regards


Reply to Thread