This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Reverse Auth - Custom Form Template

I have a task to create custom form template (in a lab environment first), for Exchange OWA login.

Does anyone knows where is default storage location for custom uploaded files and predefined ones (default_template.html and default_stylesheet.css)?



This thread was automatically locked due to age.
Parents
  • I've just did this too. Mine was from scratch and can easily be inserted into any webpage.

    Just simply add the form code below in between the <body> tags for the html page you upload. I used Coffeecup html editor (it's free for personal use)

    The bit of code just above the form code is where you place you images. I haven't found out yet how to put an error code in eg Invalid credentials if the wrong password is input.

    <div align="center"> <img src="<?assets_path?>/whitestrand.jpg" width="261" height="229" alt="" title="" /></div>


    <!-- Start of FORM -->
    <form method="post" action="<?login_path?>">

    <div align="center">Username <input type="text" name="httpd_username" value=""></div>
    <br>
    <div align="center">
    <div align="center">Password <input type="password" name="httpd_password" value=""></div>
    <br>
    <br><input type="submit" name="submit" value="Login">


    </form>
    <!-- End of FORM -->

Reply
  • I've just did this too. Mine was from scratch and can easily be inserted into any webpage.

    Just simply add the form code below in between the <body> tags for the html page you upload. I used Coffeecup html editor (it's free for personal use)

    The bit of code just above the form code is where you place you images. I haven't found out yet how to put an error code in eg Invalid credentials if the wrong password is input.

    <div align="center"> <img src="<?assets_path?>/whitestrand.jpg" width="261" height="229" alt="" title="" /></div>


    <!-- Start of FORM -->
    <form method="post" action="<?login_path?>">

    <div align="center">Username <input type="text" name="httpd_username" value=""></div>
    <br>
    <div align="center">
    <div align="center">Password <input type="password" name="httpd_password" value=""></div>
    <br>
    <br><input type="submit" name="submit" value="Login">


    </form>
    <!-- End of FORM -->

Children
No Data