英文:
How to customize open-door login page in Oracle Apex
问题
我在Oracle APEX 23.1.0中创建了一个应用程序,并将认证方案类型设置为“开放门”。一切都正常,但我找不到如何编辑/自定义开放门登录页面内容的方法。这是我想要自定义的开放门登录页面
我已经尝试查看应用程序页面区域,但那里的登录页面具有原始的登录内容(用户名/密码方案类型)。任何帮助将不胜感激
英文:
So I made a application in Oracle APEX 23.1.0, and I have set the authentication scheme type as open door. Everything works but I cant find how I can edit/customize the open door login page content. This is the open-door login page that I want to customize
I have tried to look in the app pages area but the login page there has the original login content(username/password scheme type). Any help would be much appreciated
答案1
得分: 1
编辑定义您开放门的认证方案。
修改登录处理字段的帮助文本,例如:
<script>
$('.a-Wizard-title').text('登录到我的超级棒的应用程序。');
</script>
生成的页面将以HTML格式呈现,因此将执行其中的任何内容。
您只需使用检查元素工具来帮助确定可以用于识别相关页面元素的类。
您将受到4000个字符的限制,但可能有办法绕过这个限制。
英文:
Edit the authentication scheme that defines your open door.
Modify the field Login Processing->Help text, for instance
<script>
$('.a-Wizard-title').text('Log in to my super awesome application.');
</script>
The resulting page will render that as HTML, and hence execute whatever might be there
You just need to use the inspect element tool to help determine what classes can be used to identify relevant page elements.
You'll be limited to 4000 characters, but there may be ways to get around that.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论