Problem with personalized Domino login page

I have been working on creating a custom login page in domcfg.nsf. Everything is functioning as expected, except for the Style Sheets. I am attempting to load them from the same Domino server, but it appears they are unable to load until I actually log in to the Domino.

link rel="stylesheet" type="text/css" href="/oneuiv2/base/core.css"

I also tried importing the appropriate CSS files directly into domcfg.nsf and using them as a resource in the form header, but this approach did not work either.

Note:

     1. When viewing the page source, I can open the .css link and read the content after logging in, indicating that the path is correct.
     2. Setting the form property On Web Access Content Type to either Notes or HTML does not resolve the issue.

Answer №1

By default, resources are safeguarded from unauthorized access. However, to grant access to anonymous users, you must specify the CSS files (design elements) as available.

To accomplish this, simply choose the desired design element and enable the option "Available to Public Access Users" in the security tab.

Answer №2

Make sure to grant Anonymous "read public documents" access in your domcfg.nsf file ACL as well.

Similar questions

If you have not found the answer to your question or you are interested in this topic, then look at other similar questions below or use the search

Generating a Radio Button Label on-the-fly using Angular 8 with Typescript, HTML, and SCSS

Struggling with generating a radio button name dynamically? Looking to learn how to dynamically generate a radio button name in your HTML code? Check out the snippet below: <table> <td> <input type="radio" #radio [id]="inputId" ...

Style your Checkbox Button with the Checkbox component from Element Plus

Currently, I am utilizing Vue 3 along with the Element Plus library. My goal is to modify the hover, active, and select colors of the Checkbox Button that I have implemented. Unfortunately, my attempts to do so have not been successful. I essentially copie ...

Tips for determining the full width of a webpage, not solely the width of the window

While we can easily determine the width of the window using $(window).width(); This only gives us the width of the window itself, not accounting for any overflowing content. When I refer to overflowing, I mean elements that extend beyond the visible view ...

What is the process for connecting personalized toggle controls to a checkbox input field?

I have created a custom slide toggle control to enhance the functionality of my checkboxes in the app. You can check out the controls by following this link: http://codepen.io/spstratis/pen/fJvoH Currently, I am looking for a way to connect these switche ...

Adaptable background visuals

Struggling to find a solution for a seemingly simple problem. I am looking to create responsive/fluid images that scale relative to the viewport size. I also need to load them using CSS with the background property for selective loading of different versio ...

Error: The module you are trying to import from the package is not found. Please check the package path and make sure that

I encountered an issue when trying to compile a code in Reactjs. As a beginner in Reactjs, I'm struggling with this. Module not found: Error: Package path ./cjs/react.development is not exported from package /Users/mansi/letsgrowmore/to-do-list/my-rea ...

Using display:inline-block will increase the vertical spacing

I am currently dealing with the following HTML and CSS setup: * { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } body { margin: 0; } .row { background-color: red; /* display: inline-block; */ } ul { ...

Looking for assistance with verifying the winning criteria for a Tic-Tac-Toe game coded in JavaScript

I need help understanding how to check for the winning conditions in my code. Can someone kindly explain it to me step by step? I'm quite new to coding. prntscr.com/m06ew1 <!DOCTYPE html> <html> <head> <title>Tic-Tac-Toe ...

Having an issue with retrieving value from a textfield in JavaScript

<input id="checkOldPassword" type="button" title="Check New Password" value="Check New Password" onclick="checkPassword()" /> <input id="newPassword" type="text" maxlength="8" min="8" /> <script language="javascript"> function checkPassw ...

Unraveling the mysteries of HTML tags with the power of the json_decode

I am currently facing an issue with decoding a JSON string using PHP's json_decode() function. The JSON string I am working with contains HTML tags. For a clearer view of the code, check out http://gist.github.com/605906. $json = '{"productid" : ...

What could be causing my Flask login function to not accept my post method?

Take a look at my code snippet: @app.route("/login", methods=["GET", "POST"]) def login(): session.clear() if request.method == "GET": return render_template("login.html") if request.method == "POST": rows = User.query.filter_b ...

Conceal and reveal content using jQuery

I'm struggling with creating a functionality to hide and show content when a user clicks on a button (checkbox). I've written some code but it's not working as expected. The issue is that the content doesn't hide when the checkbox is cl ...

Is there a way for me to implement my custom CSS design within the Material UI Textfield component?

I have a project in Next.js where I need to create a registration form with custom styles. The issue I'm facing is that I'm struggling to customize a textField using my own CSS. I attempted to use the makeStyles function, but encountered a proble ...

Executing a JavaScript/jQuery function on the following page

I'm currently working on developing an internal jobs management workflow and I'd like to enhance the user experience by triggering a JavaScript function when redirecting them to a new page after submitting a form. At the moment, I am adding the ...

"Effortlessly slide up or down with jQuery Dropdown: smooth functionality in Chrome, minor glitches in

First things first, I'm just diving into the world of javascript so please bear with my not-so-great code It seemed to work fine on Chrome but when I checked it on Firefox, everything went haywire Fiddle: jsfiddle.net/7NCcY/ <html> <head> ...

What is the best way to obtain the final HTML output once all scripts have been executed

Is there a way to obtain the final HTML after all scripts have been executed? The scripts on the page are adding and changing controls and CSS, and I want to see the HTML of the display as a static page. Is there a method to achieve this? Edit: For exa ...

Spacing in CSS between the menu and its submenu elements

My current challenge involves creating space between the menu and the submenu. However, I've noticed that when there is this space, the submenu doesn't function correctly. It only works when the design has no gap between the menu and the submenu. ...

Troubleshooting issues with creating a table using the "mysql_fetch_array();" function

Currently, I am working on building a webpage that retrieves data from a database and displays it in table format. However, my attempt to use the "table border" and "table-height" commands seems to have gone awry. The issue I am facing is that even thoug ...

Tips for creating a gap between the <label> element and a form field

I have read through the answers provided, but nothing seems to work for me. My goal is to place a label and 2 small form fields on the same line, with about 90px of space between the label and the fields. I am aiming for a layout similar to the image shown ...

Generate several JSON objects and transmit them to a Spring controller using AJAX

<script> $(document).ready(function() { $("#frm_details").on("submit", function(event) { event.preventDefault(); var data = $(this).serialize() $.ajax({ url : "/saveUser", type : "post", ...