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 just use my favorite single page web authoring tool to make something that looks awesome while still including a username/password form then make a copy of the index.html, copy it to something different that will be used as the target in the Sophos template.

    You just have to change all the src="/blah" and href="/foo"
    to read src="<?assets_path?>/blah"
    and href="<?assets_path?>

    And then modifying the form to use something like this:
    ```
    <form action="<?login_path?>" method="POST" class="form-horizontal" role="form">
    ```
    and make sue the username and password fields are defined on the backend code as:
    ```
    <input type="text" class="form-control" name="httpd_username" id="httpd_username" placeholder="Username">
    <input type="password" class="form-control" name="httpd_password" id="httpd_password" placeholder="Password">
Reply
  • I just use my favorite single page web authoring tool to make something that looks awesome while still including a username/password form then make a copy of the index.html, copy it to something different that will be used as the target in the Sophos template.

    You just have to change all the src="/blah" and href="/foo"
    to read src="<?assets_path?>/blah"
    and href="<?assets_path?>

    And then modifying the form to use something like this:
    ```
    <form action="<?login_path?>" method="POST" class="form-horizontal" role="form">
    ```
    and make sue the username and password fields are defined on the backend code as:
    ```
    <input type="text" class="form-control" name="httpd_username" id="httpd_username" placeholder="Username">
    <input type="password" class="form-control" name="httpd_password" id="httpd_password" placeholder="Password">
Children
No Data