Security

 View Only
  • 1.  Guest Skin for Self Registration - possible?

    Posted Jun 12, 2025 04:31 AM

    Dear Experts, 

    I can complete tweak and supply my own login form for web logins (separately or even in self registration workflow). However i cannot get my head around the guest registration form and page. Can we provide our own styling completely to give it a completely new look? i dont want to use Galleria. I know about blank and custom skins but to apply CSS, i need to know class names of Forms mainly. I can provide custom CSS classes to every field but what about the form itself? 



    ------------------------------
    Owais101
    ------------------------------


  • 2.  RE: Guest Skin for Self Registration - possible?

    Posted Jun 12, 2025 01:32 PM

    Yes?  You have the ability to supply the CSS and apply scripting, basically you have complete control over the presented page if you want to go to that effort.



    ------------------------------
    Carson Hulcher, ACEX#110
    ------------------------------



  • 3.  RE: Guest Skin for Self Registration - possible?

    Posted Jun 12, 2025 01:45 PM
    Dear Carson

    Is there any guide or how to? For login we can supply our complete login page with OUR own custom form. This works because form is posted to controller. However guest registration is handled internally through api calls, how to tweak the form and its layout?






  • 4.  RE: Guest Skin for Self Registration - possible?

    Posted Jun 13, 2025 05:17 AM

    Hi,

    I have customized web login using own CSS styles. What I have done, I used the Custom Skin 1 in Plugin Manager and edited it. It has a CSS styles part and you can also set certain parameters there like colors.

    If you want to know class names the best way is to test the page in Firefox and go to Developer Mode (F12) and investigate the HTML code. You can see there all IDs and classes. The form ID however contains a generated identifier so if you want to use that in javascript you have to use _form_name variable instead. Analyzing the HTML code in a browser helps a lot.

    Regards

    Istvan




  • 5.  RE: Guest Skin for Self Registration - possible?

    Posted Jun 13, 2025 06:57 AM
    Thanks Istvan thats exactly what i wanted to confirm, i did check the page via developer tools and tried to do the css using the form name etc but i didnt work properly, but if thats the only way to go, i will try harder this time ��

    Best Regards
    Owais Iqbal
    CCIE#37956 | ACDX 
    Technical Consultant - Aruba Networks
    Mob/Whatsapp: +92-321-2960496






  • 6.  RE: Guest Skin for Self Registration - possible?

    Posted Jun 13, 2025 07:13 AM

    Hi Owais,

    One example is that the form's window top bar I have replaced using following style:

       TH.nwaTop { background-color: #007AC9;
                  background-image: url(public/tht20_mod.gif);
                }

    Where I have created the tht20_mod.gif in Gimp and it gives a different color gradient frame. Upload it to public files and that is it.

    You can also create tag identifiers in the page code (Header or Footer parts) and style them in the custom skin configuration. E.g. I have created a div for the form so that I can center it. I added the <div id="CPForm"> in the Header HTML section's end and the </div > in the Footer HTML  section's beginning because the form is in-between.  I gave the #CPForm ID name to it and styled it in the custom skin CSS.

    #CPForm{width: max-content;
        padding: 0px;
        margin: auto;
        background-color: #F0F0F0;}

    Regards

    Istvan