如何在Oracle Apex中定制开门登录页面

huangapple go评论105阅读模式
英文:

How to customize open-door login page in Oracle Apex

问题

我在Oracle APEX 23.1.0中创建了一个应用程序,并将认证方案类型设置为“开放门”。一切都正常,但我找不到如何编辑/自定义开放门登录页面内容的方法。这是我想要自定义的开放门登录页面

我已经尝试查看应用程序页面区域,但那里的登录页面具有原始的登录内容(用户名/密码方案类型)。任何帮助将不胜感激 如何在Oracle Apex中定制开门登录页面

英文:

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 如何在Oracle Apex中定制开门登录页面

答案1

得分: 1

编辑定义您开放门的认证方案。

修改登录处理字段的帮助文本,例如:

<script>
$('.a-Wizard-title').text('登录到我的超级棒的应用程序。');
</script>

如何在Oracle Apex中定制开门登录页面

生成的页面将以HTML格式呈现,因此将执行其中的任何内容。

如何在Oracle Apex中定制开门登录页面

您只需使用检查元素工具来帮助确定可以用于识别相关页面元素的类。

您将受到4000个字符的限制,但可能有办法绕过这个限制。

英文:

Edit the authentication scheme that defines your open door.

Modify the field Login Processing->Help text, for instance

&lt;script&gt;
$(&#39;.a-Wizard-title&#39;).text(&#39;Log in to my super awesome application.&#39;);
&lt;/script&gt;

如何在Oracle Apex中定制开门登录页面

The resulting page will render that as HTML, and hence execute whatever might be there
如何在Oracle Apex中定制开门登录页面
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.

huangapple
  • 本文由 发表于 2023年6月8日 05:31:40
  • 转载请务必保留本文链接:https://go.coder-hub.com/76427242.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定